/* Start custom CSS for html, class: .elementor-element-ed1b9f8 */@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

.acm-about {
  --acm-yellow:       #fed73e;
  --acm-yellow-bg:    #fffce6;
  --acm-grey:         #a6a597;
  --acm-dark:         #18110e;
  --acm-dark-mid:     #2e2420;
  --acm-white:        #ffffff;
  --acm-surface:      #f8f7f4;
  --acm-border:       #e8e6df;
  --acm-sidebar-w:    240px;
  --acm-gap:          52px;
  --acm-radius:       6px;
  --acm-font-head:    'Syne', sans-serif;
  --acm-font-serif:   'Crimson Pro', serif;
  --acm-font-body:    'Inter', sans-serif;
}

.acm-about,
.acm-about * {
  box-sizing: border-box;
}

.acm-about {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--acm-gap);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 48px 0 80px;
  background: var(--acm-white);
}

/* ================================================================
   LEFT SIDEBAR
   ================================================================ */
.acm-sidebar {
  flex: 0 0 var(--acm-sidebar-w);
  width: var(--acm-sidebar-w);
  min-width: var(--acm-sidebar-w);
  order: -1;
}

.acm-sidebar__inner {
  position: sticky;
  top: 40px;
}

.acm-sidebar__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.acm-sidebar__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--acm-yellow);
  flex-shrink: 0;
}

.acm-sidebar__eyebrow span {
  font-family: var(--acm-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acm-grey);
}

.acm-sidebar__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.acm-sidebar__nav li {
  position: relative;
  margin: 0;
  padding: 0;
}

.acm-sidebar__nav li + li {
  border-top: 1px solid var(--acm-border);
}

.acm-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  font-family: var(--acm-font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--acm-grey);
  text-decoration: none !important;
  line-height: 1.45;
  transition: color .22s ease, padding-left .22s ease;
}

.acm-sidebar__nav a:hover {
  color: var(--acm-dark);
  padding-left: 5px;
}

.acm-sidebar__nav a:hover .acm-nav-dot {
  background: var(--acm-yellow);
}

.acm-sidebar__nav li.is-active a {
  color: var(--acm-dark);
  font-weight: 500;
}

.acm-sidebar__nav li.is-active .acm-nav-dot {
  background: var(--acm-yellow);
  transform: scale(1.5);
}

.acm-sidebar__nav li.is-active::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--acm-yellow);
  border-radius: 0 2px 2px 0;
}

.acm-nav-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acm-border);
  flex-shrink: 0;
  transition: background .22s ease, transform .22s ease;
}

/* ================================================================
   MAIN CONTENT
   ================================================================ */
.acm-content {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.acm-page-head {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--acm-border);
}

.acm-crumb {
  font-family: var(--acm-font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acm-grey);
  margin: 0 0 14px;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.acm-crumb__sep {
  color: var(--acm-yellow);
  margin: 0 7px;
}

.acm-h1 {
  font-family: var(--acm-font-head);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--acm-dark);
  letter-spacing: -.025em;
  margin: 0 0 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.acm-h1__dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--acm-yellow);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: super;
}

.acm-page-subline {
  font-family: var(--acm-font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--acm-grey);
  margin: 0;
}

/* ── Opening statement ─────────────────────────────────────────── */
.acm-wcu-lead {
  font-family: var(--acm-font-serif);
  font-size: 18.5px;
  line-height: 1.78;
  color: var(--acm-dark);
  padding: 22px 26px;
  background: var(--acm-yellow-bg);
  border-left: 4px solid var(--acm-yellow);
  border-radius: 0 var(--acm-radius) var(--acm-radius) 0;
  margin: 0 0 48px;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* ── Section break ─────────────────────────────────────────────── */
.acm-section-break {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.acm-section-break__tag {
  font-family: var(--acm-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acm-grey);
  white-space: nowrap;
}

.acm-section-break__line {
  flex: 1;
  height: 1px;
  background: var(--acm-border);
}

/* ================================================================
   PILLAR CARDS
   ================================================================ */
.acm-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 52px;
}

.acm-pillar {
  background: var(--acm-white);
  border: 1px solid var(--acm-border);
  border-radius: var(--acm-radius);
  overflow: hidden;
  position: relative;
  transition: box-shadow .25s, transform .22s;
  min-width: 0;
  max-width: 100%;
}

.acm-pillar:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.acm-pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--acm-yellow);
  opacity: 0;
  transition: opacity .25s;
}

.acm-pillar:hover::before { opacity: 1; }

.acm-pillar__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px 18px;
  background: var(--acm-surface);
  border-bottom: 1px solid var(--acm-border);
}

.acm-pillar__num {
  font-family: var(--acm-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--acm-yellow);
  background: var(--acm-dark);
  padding: 4px 10px;
  border-radius: 3px;
  flex-shrink: 0;
  line-height: 1.4;
}

.acm-pillar__title {
  font-family: var(--acm-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--acm-dark);
  letter-spacing: -.01em;
  margin: 0;
  word-break: break-word;
}

.acm-pillar__subtitle {
  font-family: var(--acm-font-head);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acm-grey);
  margin: 3px 0 0;
  word-break: break-word;
}

.acm-pillar__body {
  padding: 20px 24px 22px;
}

.acm-pillar__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acm-pillar__bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.acm-pillar__bullet-icon {
  width: 22px;
  height: 22px;
  background: var(--acm-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.acm-pillar__bullet-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--acm-dark);
}

.acm-pillar__bullet-text {
  font-family: var(--acm-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--acm-dark-mid);
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.acm-pillar__bullet-text strong {
  font-weight: 500;
  color: var(--acm-dark);
}

/* ================================================================
   CLOSING CTA
   ================================================================ */
.acm-wcu-cta {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px 36px;
  background: var(--acm-dark);
  border-radius: var(--acm-radius);
  margin-top: 8px;
  max-width: 100%;
}

.acm-wcu-cta__rule {
  height: 100%;
  background: var(--acm-yellow);
  border-radius: 2px;
}

.acm-wcu-cta__heading {
  font-family: var(--acm-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--acm-white);
  letter-spacing: -.01em;
  margin: 0 0 8px;
  word-break: break-word;
}

.acm-wcu-cta__body {
  font-family: var(--acm-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin: 0 0 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.acm-wcu-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acm-yellow);
  color: var(--acm-dark) !important;
  font-family: var(--acm-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 11px 22px;
  border-radius: 3px;
  transition: background .2s, box-shadow .2s;
}

.acm-wcu-cta__btn:hover {
  background: #ffc800;
  box-shadow: 0 4px 16px rgba(254,215,62,.3);
}

.acm-wcu-cta__btn svg {
  width: 14px;
  height: 14px;
  fill: var(--acm-dark);
  flex-shrink: 0;
}

/* ================================================================
   MOBILE TABS
   ================================================================ */
.acm-tabs-bar {
  display: none;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border-bottom: 2px solid var(--acm-border);
  margin-bottom: 32px;
  width: 100%;
  max-width: 100%;
}

.acm-tabs-bar::-webkit-scrollbar { display: none; }

.acm-tabs {
  display: inline-flex;
  white-space: nowrap;
  width: max-content;
  min-width: unset;
  gap: 0;
}

.acm-tabs a {
  display: block;
  padding: 11px 15px;
  font-family: var(--acm-font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--acm-grey);
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}

.acm-tabs a.is-active,
.acm-tabs a:hover {
  color: var(--acm-dark);
  border-bottom-color: var(--acm-yellow);
  font-weight: 500;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .acm-about { gap: 32px; }
}

@media (max-width: 768px) {
  .acm-about {
    flex-direction: column;
    gap: 0;
    padding: 20px 16px 60px;
    overflow-x: hidden;
  }

  .acm-sidebar  { display: none; }
  .acm-tabs-bar { display: block; }

  .acm-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .acm-pillar__head { padding: 18px 18px 14px; gap: 12px; }
  .acm-pillar__body { padding: 16px 18px 20px; }

  .acm-wcu-cta {
    grid-template-columns: 3px 1fr;
    padding: 26px 22px;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .acm-wcu-lead  { font-size: 16px; padding: 16px 14px; }
  .acm-pillar__title { font-size: 14px; }
  .acm-h1        { font-size: 24px; }

  .acm-wcu-cta {
    padding: 22px 16px;
  }

  .acm-wcu-cta__btn {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */