/* ─────────────────────────────────────────────────────────────────────────────
   Mishpacha — About page
   Prefix: ab-
───────────────────────────────────────────────────────────────────────────── */
#page-about {
    --ab-red:   var(--red);
    --ab-redd:  var(--red-dark);
    --ab-ink:   var(--ink);
    --ab-off:   #1c1c1c;
    --ab-gm:    #6b6b6b;
    --ab-g-1:   #4a4a4a;
    --ab-gl:    #e4e4e4;
    --ab-cream: #faf9f5;
    --ab-serif: var(--font-body);
    background: var(--paper);
    color: var(--ab-ink);
    font-size: 15px;
    line-height: 1.55;
}
#page-about * { box-sizing: border-box; }
#page-about img { display: block; max-width: 100%; }
#page-about a { color: inherit; text-decoration: none; }
.ab-wrap { max-width: 1440px; margin: 0 auto; padding: 0 38px; }

.ab-lbl {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--ab-red); margin-bottom: 14px;
}
.ab-lbl::before { content: ''; width: 3px; height: 14px; background: var(--ab-red); border-radius: 2px; }
.ab-lbl--c { justify-content: center; }
.ab-lbl--light { color: #ff6b7e; }

/* HERO */
.ab-hero { background: var(--ab-off); color: #fff; padding: 96px 0 64px; overflow: hidden; position: relative; }
.ab-hero::before {
    content: '2002';
    position: absolute;
    right: -30px; top: 14%;
    font-family: var(--ab-serif);
    font-size: clamp(180px, 22vw, 340px);
    font-weight: 700;
    color: rgba(255,255,255,.045);
    letter-spacing: -.04em;
    line-height: .85;
    pointer-events: none;
    user-select: none;
}
.ab-hero-in { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; }
.ab-hero-eye {
    font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.4); margin-bottom: 28px;
}
.ab-hero-title {
    font-family: var(--ab-serif);
    font-size: clamp(40px, 5.6vw, 80px); font-weight: 700;
    line-height: 1.02; letter-spacing: -.025em;
    color: #fff; margin: 0 0 28px;
}
.ab-hero-title em { color: var(--ab-red); font-style: italic; font-weight: 400; }
.ab-hero-desc { font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 640px; }
.ab-hero-quote {
    font-family: var(--ab-serif); font-size: 19px; line-height: 1.45;
    color: rgba(255,255,255,.85); border-left: 2px solid var(--ab-red);
    padding: 4px 0 4px 24px;
    margin: 0;
}
.ab-hero-quote cite { display: block; margin-top: 14px; font-size: 13px; font-style: normal; color: rgba(255,255,255,.45); }
.ab-hero-strip {
    position: relative;
    margin-top: 56px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
}
.ab-hero-strip-lbl { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.ab-hero-strip-row { display: flex; gap: 28px; flex-wrap: wrap; font-family: var(--ab-serif); font-size: 18px; color: rgba(255,255,255,.5); }
.ab-hero-strip-row span:hover { color: #fff; }

/* STATS */
.ab-stats { background: var(--ab-cream); padding: 56px 0; }
.ab-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.ab-stat { text-align: center; }
.ab-stat-n { font-family: var(--ab-serif); font-size: clamp(36px, 4.2vw, 56px); font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.ab-stat-l { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ab-gm); margin-top: 8px; }

/* MISSION — dark contrast section (same ink as media below) */
.ab-mission { background: var(--ab-ink); color: #fff; padding: 96px 0; }
.ab-mission .ab-lbl { color: rgba(255,255,255,.75); }
.ab-mission .ab-lbl::before { background: var(--ab-red); }
.ab-mission-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.ab-mission-quote {
    font-family: var(--ab-serif); font-size: clamp(22px, 2.4vw, 32px); font-weight: 500;
    line-height: 1.3; letter-spacing: -.01em; color: #fff;
    margin-bottom: 32px;
    padding-left: 20px; border-left: 3px solid var(--ab-red);
}
.ab-mission-body p { font-size: 16px; color: rgba(255,255,255,.92); line-height: 1.7; margin: 0 0 18px; }
.ab-mission-img { position: relative; }
.ab-cover-stack { position: relative; aspect-ratio: 4/5; max-width: 360px; margin-left: auto; }
.ab-cover {
    position: absolute; inset: 0;
    border-radius: 6px; box-shadow: 0 14px 36px rgba(0,0,0,.28);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: var(--ab-ink);
    color: #fff; font-family: var(--ab-serif); font-weight: 700;
}
.ab-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-cover--back  { transform: translate(28px, -16px) rotate(-4deg); opacity: .7; }
.ab-cover--mid   { transform: translate(14px, -6px) rotate(2deg);   opacity: .9; }
.ab-cover--front { background: var(--ab-ink); }
.ab-cover--ph { font-size: 96px; }
.ab-mission-cap { text-align: center; margin-top: 36px; font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* TIMELINE */
.ab-timeline { background: var(--ab-cream); padding: 96px 0; }
.ab-timeline-head { text-align: center; margin-bottom: 36px; }
.ab-timeline-head h2 { font-family: var(--ab-serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 10px; }
.ab-timeline-head h2 em { color: var(--ab-red, #c30c1e); font-style: normal; }
.ab-timeline-head p { font-size: 13px; color: var(--ab-gm); }
.ab-tl-rail { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.ab-tl-pill {
    background: transparent;
    border: 1.5px solid var(--ab-gl);
    color: var(--ab-g-1);
    font-family: inherit;
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    padding: 8px 18px; border-radius: 999px;
    cursor: pointer;
    transition: all .15s;
}
.ab-tl-pill:hover { border-color: var(--ab-ink); color: var(--ab-ink); }
.ab-tl-pill.active { background: var(--ab-ink); border-color: var(--ab-ink); color: #fff; }

.ab-tl-cards {
    display: flex; gap: 18px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 4px;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/Edge legacy */
}
.ab-tl-cards::-webkit-scrollbar { display: none; height: 0; }
.ab-tl-card {
    flex: 0 0 300px;
    background: #fff;
    border: 1px solid var(--ab-gl);
    border-radius: 10px; padding: 28px 24px;
    scroll-snap-align: start;
    color: var(--ab-ink);
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
.ab-tl-card:hover { border-color: var(--ab-ink); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.ab-tl-mark { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ab-red); margin-bottom: 14px; }
.ab-tl-yr { font-family: var(--ab-serif); font-size: 44px; font-weight: 700; line-height: 1; letter-spacing: -.02em; color: var(--ab-red); margin-bottom: 4px; }
.ab-tl-eye { font-size: 12px; color: var(--ab-gm); margin-bottom: 16px; letter-spacing: .02em; }
.ab-tl-h { font-family: var(--ab-serif); font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--ab-ink); margin-bottom: 10px; }
.ab-tl-b { font-size: 13px; color: var(--ab-g-1); line-height: 1.6; }

/* Milestone (inverted) variant — dark card to highlight key moments */
.ab-tl-card--mark { background: var(--ab-ink); border-color: var(--ab-ink); color: #fff; }
.ab-tl-card--mark .ab-tl-yr { color: var(--ab-red); }
.ab-tl-card--mark .ab-tl-eye { color: rgba(255,255,255,.5); }
.ab-tl-card--mark .ab-tl-h { color: #fff; }
.ab-tl-card--mark .ab-tl-b { color: rgba(255,255,255,.65); }
.ab-tl-card--mark:hover { border-color: var(--ab-ink); }

.ab-tl-nav { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.ab-tl-arrow {
    width: 40px; height: 40px;
    background: transparent;
    border: 1.5px solid var(--ab-gl);
    color: var(--ab-g-1);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all .15s;
    display: inline-flex; align-items: center; justify-content: center;
}
.ab-tl-arrow:hover { border-color: var(--ab-ink); color: var(--ab-ink); }

/* PUBLICATIONS */
.ab-pubs { padding: 96px 0; }
.ab-pubs-head { text-align: center; margin-bottom: 48px; }
.ab-pubs-head h2 { font-family: var(--ab-serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 12px; }
.ab-pubs-head p { font-size: 15px; color: var(--ab-gm); max-width: 580px; margin: 0 auto; }
.ab-pubs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ab-pub-card {
    background: #fff;
    border: 1px solid var(--ab-gl);
    border-radius: 8px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.ab-pub-card:hover { box-shadow: 0 16px 36px rgba(0,0,0,.08); transform: translateY(-3px); }
.ab-pub-head {
    aspect-ratio: 4/3;
    position: relative;
    background: #fff;
    border-bottom: 4px solid var(--accent, var(--ab-ink));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ab-serif); font-size: 36px; font-weight: 700;
    text-align: center;
    padding: 32px;
    overflow: hidden;
}
.ab-pub-head--logo { padding: 28px; }
.ab-pub-head img {
    max-width: 78%;
    max-height: 78%;
    width: auto; height: auto;
    object-fit: contain;
}
.ab-pub-head-text { display: block; color: var(--accent, var(--ab-ink)); }
.ab-pub-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.ab-pub-name { font-family: var(--ab-serif); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.ab-pub-since { font-size: 12px; color: var(--ab-red); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.ab-pub-desc { font-size: 14px; color: var(--ab-g-1); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.ab-pub-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--ab-gl); }
.ab-pub-freq { font-size: 12px; color: var(--ab-gm); font-weight: 600; }
#page-about .ab-pub-link { font-size: 12px; color: var(--ab-red); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
#page-about .ab-pub-link:hover { color: var(--ab-redd); }

/* BUREAUS */
/* MEDIA — replaces bureaus */
.ab-media { background: var(--ab-ink); color: #fff; padding: 96px 0; }
.ab-media-head { text-align: center; margin-bottom: 48px; }
.ab-media-head h2 { font-family: var(--ab-serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.1; color: #fff; margin: 0 0 12px; letter-spacing: -.02em; }
.ab-media-head p { font-size: 15px; color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto; }
.ab-media-head .ab-lbl { color: rgba(255,255,255,.75); }
.ab-media-head .ab-lbl::before { background: #fff; }
.ab-media-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: stretch; }
.ab-media-eye { display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 12px; }

.ab-media-video { display: flex; flex-direction: column; background: var(--ab-off); border-radius: 4px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .25s ease; }
.ab-media-video:hover { transform: translateY(-3px); }
.ab-media-video-thumb { aspect-ratio: 16/9; background: #000 center/cover no-repeat; position: relative; display: flex; align-items: center; justify-content: center; }
.ab-media-play { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--ab-ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .2s ease; }
.ab-media-video:hover .ab-media-play { transform: scale(1.06); background: var(--ab-red); color: #fff; }
.ab-media-dur { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,.8); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 8px; border-radius: 2px; letter-spacing: .04em; }
.ab-media-video-meta { padding: 22px 24px 24px; }
.ab-media-video-title { font-family: var(--ab-serif); font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; line-height: 1.2; margin: 0 0 14px; color: #fff; }
.ab-media-cta { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--ab-red); text-transform: uppercase; transition: color .15s ease; }
.ab-media-video:hover .ab-media-cta { color: #fff; }

.ab-media-pods { display: flex; flex-direction: column; }
.ab-media-pods-head { margin-bottom: 18px; }
.ab-media-pods-title { font-family: var(--ab-serif); font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; line-height: 1.2; margin: 0; color: #fff; }
.ab-media-pods-grid { display: grid; grid-template-columns: 1fr; gap: 10px; flex: 1; }
.ab-media-pod { display: flex; align-items: center; gap: 14px; padding: 12px 14px; background: var(--ab-off); border-radius: 4px; text-decoration: none; color: inherit; transition: background .15s ease; }
.ab-media-pod:hover { background: #2a2a2a; }
.ab-media-pod-logo { width: 48px; height: 48px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.ab-media-pod-logo--ph { background: var(--ab-red); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ab-serif); font-weight: 700; font-size: 22px; }
.ab-media-pod-meta { min-width: 0; }
.ab-media-pod-name { font-family: var(--ab-serif); font-size: 15px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 2px; }
.ab-media-pod-host { font-size: 12px; color: rgba(255,255,255,.55); }
.ab-media-cta--pods { margin-top: 16px; }
.ab-media-pods .ab-media-cta:hover { color: #fff; }

@media (max-width: 880px) {
    .ab-media-grid { grid-template-columns: 1fr; }
}

.ab-bureaus { background: var(--ab-ink); color: #fff; padding: 96px 0; }
.ab-bureaus-head { text-align: center; margin-bottom: 48px; }
.ab-bureaus-head h2 { font-family: var(--ab-serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.1; color: #fff; margin: 0 0 12px; }
.ab-bureaus-head p { font-size: 15px; color: rgba(255,255,255,.55); }
.ab-bureaus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ab-bureau {
    position: relative;
    background: var(--ab-off);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 28px;
    transition: border-color .15s;
}
.ab-bureau:hover { border-color: rgba(255,255,255,.22); }
.ab-bureau-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); margin-bottom: 18px; }
.ab-bureau-dot--hq { background: var(--ab-red); box-shadow: 0 0 0 4px rgba(200,16,46,.18); }
.ab-bureau-city { font-family: var(--ab-serif); font-size: 22px; font-weight: 700; line-height: 1.1; }
.ab-bureau-country { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; letter-spacing: .04em; }
.ab-bureau-role { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 16px; }
.ab-bureau-tag {
    position: absolute; top: 22px; right: 22px;
    background: var(--ab-red); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: .12em;
    padding: 3px 9px; border-radius: 3px;
}

/* LEADERSHIP */
.ab-leadership { padding: 96px 0; background: var(--ab-cream); }
.ab-leadership-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.ab-leadership-head h2 { font-family: var(--ab-serif); font-size: clamp(26px, 3vw, 38px); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; margin: 0; }
#page-about .ab-leadership-link { font-size: 12px; color: var(--ab-red); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
#page-about .ab-leadership-link:hover { color: var(--ab-redd); }

.ab-leader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 32px; }
.ab-leader-card {
    background: #fff;
    border: 1px solid var(--ab-gl);
    border-radius: 8px;
    padding: 28px 24px;
    display: flex; flex-direction: column;
    transition: border-color .2s, transform .2s;
}
.ab-leader-card:hover { border-color: var(--ab-ink); transform: translateY(-2px); }
a.ab-leader-card, a.ab-mh-cell { color: inherit; text-decoration: none; cursor: pointer; }
.ab-leader-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.ab-leader-av { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top; background: var(--ab-cream); flex-shrink: 0; border: 2px solid var(--ab-gl); }
.ab-leader-av--ph {
    display: flex; align-items: center; justify-content: center;
    color: #fff; background: var(--ab-red);
    font-family: var(--ab-serif); font-size: 20px; font-weight: 700;
    border: 2px solid var(--ab-gl);
}
.ab-leader-name { font-family: var(--ab-serif); font-size: 17px; font-weight: 700; line-height: 1.2; }
.ab-leader-title { font-size: 11px; color: var(--ab-gm); font-weight: 600; margin-top: 4px; letter-spacing: .06em; text-transform: uppercase; }
.ab-leader-quote {
    font-family: var(--ab-serif); font-style: italic;
    font-size: 14px; color: #3a3a3a;
    line-height: 1.6;
    border-top: 1px solid var(--ab-gl);
    padding-top: 14px;
    margin-top: auto;
}

.ab-masthead {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    background: #fff;
    border: 1px solid var(--ab-gl);
    border-radius: 8px;
    overflow: hidden;
}
.ab-mh-cell { padding: 20px 16px; text-align: center; border-right: 1px solid var(--ab-gl); transition: background .15s; }
.ab-mh-cell:last-child { border-right: none; }
.ab-mh-cell:hover { background: var(--ab-cream); }
.ab-mh-name { font-family: var(--ab-serif); font-size: 14px; font-weight: 700; line-height: 1.2; }
.ab-mh-role { font-size: 11px; color: var(--ab-gm); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }

/* VALUES */
.ab-values { padding: 96px 0; border-bottom: 1px solid var(--ab-gl); }
.ab-values-head { text-align: center; margin-bottom: 48px; }
.ab-values-head h2 { font-family: var(--ab-serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.1; margin: 0; }
.ab-values-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
    border: 1px solid var(--ab-gl);
    border-radius: 8px;
    overflow: hidden;
}
.ab-val {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 36px 32px;
    border-right: 1px solid var(--ab-gl);
    border-bottom: 1px solid var(--ab-gl);
    transition: background .15s;
}
.ab-val:nth-child(2n) { border-right: none; }
.ab-val:nth-last-child(-n+2) { border-bottom: none; }
.ab-val:hover { background: var(--ab-cream); }
.ab-val-num {
    font-family: var(--ab-serif);
    font-style: italic;
    font-size: 40px; font-weight: 700; line-height: 1;
    color: var(--ab-red);
    letter-spacing: -.02em;
    width: 64px; flex-shrink: 0;
}
.ab-val-body { flex: 1; }
.ab-val-title { font-family: var(--ab-serif); font-size: 21px; font-weight: 700; line-height: 1.25; letter-spacing: -.005em; margin-bottom: 10px; }
.ab-val-desc { font-size: 14px; color: var(--ab-gm); line-height: 1.7; }

/* PRESS */
.ab-press { padding: 96px 0; background: var(--ab-cream); }
.ab-press-head { text-align: center; margin-bottom: 48px; }
.ab-press-head h2 { font-family: var(--ab-serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.1; margin: 0; }
.ab-press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ab-press-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ab-gl);
    border-radius: 8px;
    padding: 28px 26px;
    margin: 0;
}
.ab-press-card::before {
    content: '\201C';
    position: absolute; top: 12px; left: 20px;
    font-family: var(--ab-serif); font-style: italic;
    font-size: 80px; line-height: 1;
    color: var(--ab-red);
    opacity: .18;
}
.ab-press-quote {
    font-family: var(--ab-serif); font-style: italic;
    font-size: 16px; line-height: 1.55;
    color: var(--ab-ink);
    letter-spacing: -.005em;
    position: relative;
    margin: 0 0 22px;
}
.ab-press-src { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--ab-gl); }
.ab-press-logo { font-family: var(--ab-serif); font-style: italic; font-size: 14px; font-weight: 700; letter-spacing: -.005em; }
.ab-press-meta { font-size: 11px; color: var(--ab-gm); letter-spacing: .08em; text-transform: uppercase; }

/* AWARDS */
.ab-awards { padding: 72px 0; border-bottom: 1px solid var(--ab-gl); }
.ab-awards-in { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.ab-awards-lbl { font-size: 14px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ab-red); }
.ab-awards-list { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; counter-reset: award-counter; }
.ab-award {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--ab-serif); font-style: italic;
    font-size: 19px; color: var(--ab-ink);
    counter-increment: award-counter;
}
.ab-award::before {
    content: counter(award-counter);
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border: 1.5px solid var(--ab-red);
    border-radius: 50%;
    color: var(--ab-red);
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px; font-weight: 700; font-style: normal;
}

/* CTA */
.ab-cta { background: var(--ab-red); color: #fff; padding: 96px 0; text-align: center; }
.ab-cta-eye { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.ab-cta-title {
    font-family: var(--ab-serif);
    font-size: clamp(32px, 4.8vw, 64px); font-weight: 700;
    line-height: 1.05; letter-spacing: -.025em;
    color: #fff;
    margin: 0 auto 18px;
    max-width: 920px;
}
.ab-cta-title em { font-style: italic; font-weight: 400; opacity: .7; }
.ab-cta-desc { font-size: 17px; color: rgba(255,255,255,.85); line-height: 1.55; max-width: 540px; margin: 0 auto 32px; }
.ab-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
#page-about .ab-cta-sub {
    background: #fff; color: var(--ab-red);
    font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 14px 28px; border-radius: 4px;
}
#page-about .ab-cta-sub:hover { background: var(--ab-ink); color: #fff; }
#page-about .ab-cta-contact {
    color: rgba(255,255,255,.85);
    font-size: 13px; font-weight: 600;
    padding: 14px 18px;
    align-self: center;
}
#page-about .ab-cta-contact:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .ab-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
    .ab-pubs-grid, .ab-press-grid, .ab-bureaus-grid, .ab-leader-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-masthead { grid-template-columns: repeat(3, 1fr); }
    .ab-mh-cell:nth-child(3) { border-right: none; }
    .ab-mh-cell:nth-child(n+4) { border-top: 1px solid var(--ab-gl); }
    .ab-hero-in, .ab-mission-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
    .ab-wrap { padding: 0 14px; }
    .ab-hero { padding: 56px 0 40px; }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-pubs-grid, .ab-press-grid, .ab-bureaus-grid, .ab-leader-grid, .ab-values-grid { grid-template-columns: 1fr; }
    .ab-masthead { grid-template-columns: repeat(2, 1fr); }
    .ab-mh-cell:nth-child(odd) { border-right: 1px solid var(--ab-gl); }
    .ab-mh-cell:nth-child(even) { border-right: none; }
    .ab-mh-cell:nth-child(n+3) { border-top: 1px solid var(--ab-gl); }
    .ab-mission, .ab-timeline, .ab-pubs, .ab-bureaus, .ab-leadership, .ab-values, .ab-press, .ab-cta { padding: 64px 0; }
    .ab-val { flex-direction: column; gap: 12px; padding: 28px 24px; border-right: none; }
    .ab-val:nth-last-child(-n+2) { border-bottom: 1px solid var(--ab-gl); }
    .ab-val:last-child { border-bottom: none; }
    .ab-val-num { font-size: 36px; width: auto; }
    .ab-leadership-head { flex-direction: column; align-items: flex-start; }
    .ab-awards-in { flex-direction: column; align-items: flex-start; gap: 18px; }
}
