/* Start custom CSS for html, class: .elementor-element-f9bdc2f *//* ================================================================
   ABSOLUTE CABLEMART — About Section Styles
   Scope: .acm-about — safe for Elementor, no global overrides.
   Load via: Elementor Custom CSS, or child theme stylesheet.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Crimson+Pro:ital,wght@0,400;1,400&family=Inter:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
.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;
}

/* ── Outer wrapper ─────────────────────────────────────────────── */
.acm-about {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--acm-gap);
  width: 100%;
  padding: 48px 0 72px;
  box-sizing: border-box;
  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;
}

/* Eyebrow label */
.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);
}

/* Nav list */
.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);
}

/* Default link */
.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;
}

/* Hover */
.acm-sidebar__nav a:hover {
  color: var(--acm-dark);
  padding-left: 5px;
}

.acm-sidebar__nav a:hover .acm-nav-dot {
  background: var(--acm-yellow);
  transform: scale(1.3);
}

/* ── ACTIVE STATE (set by JS on page load) ── */
.acm-sidebar__nav li.is-active a {
  color: var(--acm-dark);
  font-weight: 500;
  padding-left: 5px;
}

.acm-sidebar__nav li.is-active .acm-nav-dot {
  background: var(--acm-yellow);
  transform: scale(1.5);
}

/* Yellow bar — left edge */
.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;
}

/* Dot indicator */
.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;
}

/* ── Page header ───────────────────────────────────────────────── */
.acm-page-head {
  margin-bottom: 40px;
  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;
}

.acm-crumb__sep {
  color: var(--acm-yellow);
  margin: 0 7px;
}

.acm-h1 {
  font-family: var(--acm-font-head);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--acm-dark);
  letter-spacing: -.028em;
  margin: 0;
}

.acm-h1__dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--acm-yellow);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: super;
}

/* ── Body copy ─────────────────────────────────────────────────── */
.acm-lead {
  font-family: var(--acm-font-serif);
  font-size: 19px;
  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 26px;
}

.acm-body {
  margin-bottom: 0;
}

.acm-body p {
  font-family: var(--acm-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--acm-dark-mid);
  margin: 0 0 18px;
}

.acm-body p:last-child {
  margin-bottom: 0;
}

/* ── Section break ─────────────────────────────────────────────── */
.acm-section-break {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 52px 0 26px;
}

.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);
}

.acm-h2 {
  font-family: var(--acm-font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--acm-dark);
  letter-spacing: -.016em;
  margin: 0 0 24px;
}

/* ── Stats grid ────────────────────────────────────────────────── */
.acm-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.acm-stat {
  background: var(--acm-surface);
  border: 1px solid var(--acm-border);
  border-radius: var(--acm-radius);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: default;
}

.acm-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--acm-yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
}

.acm-stat:hover {
  border-color: rgba(254, 215, 62, .55);
  box-shadow: 0 8px 30px rgba(254, 215, 62, .13), 0 2px 8px rgba(0, 0, 0, .04);
  transform: translateY(-3px);
}

.acm-stat:hover::before {
  transform: scaleX(1);
}

.acm-stat__index {
  display: inline-block;
  font-family: var(--acm-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--acm-yellow);
  background: var(--acm-dark);
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.acm-stat__label {
  font-family: var(--acm-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--acm-dark);
  margin: 0 0 7px;
}

.acm-stat__value {
  font-family: var(--acm-font-body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.62;
  color: #4a3d38;
  margin: 0;
}

/* ── Mantra banner ─────────────────────────────────────────────── */
.acm-mantra {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--acm-dark);
  border-radius: var(--acm-radius);
}

.acm-mantra__rule {
  height: 100%;
  background: var(--acm-yellow);
  border-radius: 2px;
}

.acm-mantra__text {
  font-family: var(--acm-font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .80);
  margin: 0;
}

.acm-mantra__text strong {
  font-style: normal;
  font-weight: 600;
  color: var(--acm-yellow);
}

/* ================================================================
   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;
}

.acm-tabs-bar::-webkit-scrollbar {
  display: none;
}

.acm-tabs {
  display: inline-flex;
  white-space: nowrap;
  min-width: 100%;
  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;
  transition: color .2s, border-color .2s;
}

/* ── Mobile tab active state (set by JS on page load) ── */
.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: 28px 0 56px;
  }

  .acm-sidebar {
    display: none;
  }

  .acm-tabs-bar {
    display: block;
  }

  .acm-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .acm-stats {
    grid-template-columns: 1fr;
  }

  .acm-mantra {
    padding: 24px 20px;
    gap: 18px;
  }

  .acm-lead {
    font-size: 17px;
  }
}/* End custom CSS */