/* ============================================================
    Author Page — Matches Figma 2540:17235 (mobile) & 2537:15658 (desktop)
    Mobile-first. Breakpoints: 768px (tablet), 1024px (desktop)
    ============================================================ */

/* ── Scoped reset ─────────────────────────────────────────── */
.author-page-wrap *,
.author-page-wrap *::before,
.author-page-wrap *::after {
  box-sizing: border-box;
}

.author-page-wrap {
  font-family: "Poppins", sans-serif;
  color: #536179;
  overflow-x: hidden;
  /* Design tokens — prefixed with --nc- to avoid Bootstrap/Tailwind conflicts */
  --nc-brand: #0d74ba;
  --nc-brand-50: #f1f8fe;
  --nc-brand-100: #e2f0fc;
  --nc-brand-400: #43aeed;
  --nc-n300: #e1e4ea;
  --nc-n600: #8694ac;
  --nc-n700: #536179;
  --nc-n800: #343d4c;
}

/* ══════════════════════════════════════════════════════════
    HERO — Mobile (390px)
    Figma node 2562:7897 — total hero h=770px below 64px nav.
    Order (centred): badge → name(40px) → title(18px) → edu(16px)
                      → socials → author photo → stats card.
    Background: light-blue gradient, city-skyline silhouette centred
    behind the photo, two concentric decorative ellipses behind the photo.
    ══════════════════════════════════════════════════════════ */
.aut-hero {
  background: linear-gradient(180deg, #f1f8fe 0%, #e2f0fc 106.46%);
  position: relative;
  overflow: hidden;
  padding: 32px 16px 0;
}

/* City-skyline art — bottom-aligned (not mirrored). Sits behind content + ellipses. */
.aut-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(52vh, 400px);
  min-height: 260px;
  background-image: var(--nc-hero-bg, none);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

/* Decorative concentric ellipses behind the photo (mobile: centred) */
.aut-hero__deco {
  position: absolute;
  left: 50%;
  top: 381px;
  transform: translateX(-50%);
  width: 448px;
  height: 448px;
  pointer-events: none;
  z-index: 1;
}
.aut-hero__deco::before,
.aut-hero__deco::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.aut-hero__deco::before {
  inset: 0;
  background: rgba(13, 116, 186, 0.08);
}
.aut-hero__deco::after {
  top: 113px;
  left: 53px;
  width: 342px;
  height: 342px;
  background: rgba(13, 116, 186, 0.12);
}

/* Inner — single centred column on mobile */
.aut-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* Author photo — mobile: circular crop, ~300px, below socials */
.aut-hero__photo {
  position: relative;
  z-index: 2;
  width: 300px;
  max-width: 100%;
  margin-top: 8px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.aut-hero__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── Verified Expert badge ── */
.aut-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0c74ba;
  border: 0.8px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 10px 22px;
}
.aut-hero__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.aut-hero__badge-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 20px;
}

/* ── Name / Title / Edu ── Figma mobile typography */
.aut-hero__left {
  display: contents;
}
.aut-hero__name {
  font-size: 40px;
  font-weight: 600;
  color: #343d4c;
  line-height: 1.2;
  margin: 0;
}
.aut-hero__title {
  font-size: 18px;
  font-weight: 500;
  color: #536179;
  line-height: 32px;
  margin: 0;
  width: 100%;
  text-align: center;
  max-width: 360px;
}
.aut-hero__edu {
  font-size: 16px;
  font-weight: 400;
  color: #8694ac;
  line-height: 24px;
  margin: 0;
  max-width: 310px;
}

/* ── Social icon buttons ── */
.aut-hero__socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.aut-hero__soc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(13, 116, 186, 0.2);
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}
.aut-hero__soc-btn:hover {
  background: rgba(13, 116, 186, 0.15);
}
.aut-hero__soc-btn svg {
  width: 20px;
  height: 20px;
}

/* ══════════════════════════════════════════════════════════
    STATS CARD — Mobile
    Figma: 358×324px card, rounded-[30px], vertical stack, -44px overlap
    ══════════════════════════════════════════════════════════ */
.aut-stats-wrap {
  position: relative;
  z-index: 3;
  padding: 0 16px;
  margin-top: -44px;
}

.aut-stats {
  background: #fff;
  border: 1px solid var(--nc-n300);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(13, 116, 186, 0.08), 0 4px 4px rgba(0, 0, 0, 0.04);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aut-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

/* Figma mobile: 51×51px icon circles, icon vertically centred */
.aut-stat__icon {
  width: 51px;
  height: 51px;
  flex-shrink: 0;
  background: #0d74ba;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aut-stat__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.aut-stat__num {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #343D4C;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.aut-stat__lbl {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #536179;
  line-height: 1.3;
  margin-top: 2px;
}

/* Horizontal dividers between stats on mobile */
.aut-stat__div {
  height: 1px;
  width: 100%;
  background: var(--nc-n300);
  margin: 26px 0;
}

/* ══════════════════════════════════════════════════════════
    PULL QUOTE — Mobile
    Figma: italic, 24px, blue, centred. Big decorative " on left.
    ══════════════════════════════════════════════════════════ */
.aut-quote-wrap {
  position: relative;
  padding: 40px 16px 32px;
  margin-top: 40px;
}

.aut-quote-mark {
  position: absolute;
  left: 5px;
  top: 0;
  font-family: "Palanquin Dark", "Poppins", serif;
  font-size: 100px;
  font-weight: 600;
  color: var(--nc-brand);
  opacity: 0.2;
  line-height: 1;
  transform: scaleY(-1) ;
  user-select: none;
  pointer-events: none;
}

.aut-quote {
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color: var(--nc-brand);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
    ABOUT + EXPERTISE — Mobile (single column)
    ══════════════════════════════════════════════════════════ */
.aut-about {
  padding: 8px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aut-about__heading {
  font-size: 24px;
  font-weight: 600;
  color: #181a2a;
  margin: 0 0 32px;
  line-height: normal;
}

.aut-about__sec {
  margin-bottom: 28px;
}
.aut-about__sec:last-child {
  margin-bottom: 0;
}

.aut-about__sec h3 {
  font-size: 20px;
  font-weight: 600;
  color: #343b4c;
  margin: 0 0 16px;
  line-height: normal;
}
.aut-about__sec p {
  font-size: 16px;
  font-weight: 400;
  color: #536179;
  line-height: 1.75;
  margin: 0;
}

/* Expertise card — bg #F1F8FE, border #43AEED, radius 22px, p=24px */
.aut-expertise {
  background: #f1f8fe;
  border: 1px solid #43aeed;
  border-radius: 22px;
  padding: 24px;
}
.aut-expertise__heading {
  font-size: 20px;
  font-weight: 500;
  color: var(--nc-brand);
  margin: 0 0 24px;
  line-height: normal;
}

.aut-exp-group {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--nc-brand-100);
  margin-bottom: 16px;
}
.aut-exp-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Icon — 38×35px bg #E2F0FC, radius 8px */
.aut-exp-icon {
  width: 38px;
  height: 35px;
  background: #e2f0fc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.aut-exp-icon svg {
  width: 22px;
  height: 22px;
}

/* Mobile: 12px Medium */
.aut-exp-label {
  font-size: 12px;
  font-weight: 500;
  color: #8694ac;
  display: block;
  margin-bottom: 6px;
  line-height: 20px;
}
.aut-exp-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 500;
  color: #536179;
  line-height: normal;
}
.aut-exp-list li {
  margin-bottom: 2px;
}

/* ══════════════════════════════════════════════════════════
    ARTICLES — Mobile
    ══════════════════════════════════════════════════════════ */
.aut-articles {
  padding: 32px 0 48px;
  background: #fff;
}
.aut-articles__inner {
  padding: 0 16px;
}

.aut-articles__heading {
  font-size: 24px;
  font-weight: 600;
  color: #3f3f3f;
  line-height: normal;
  margin: 0 0 8px;
}

/* Tabs — Written / Reviewed (Figma mobile 2804:1334: tab row h=66, gap 32, border #8694ac) */
.aut-tabs {
  display: flex;
  gap: 32px;
  align-items: center;
  min-height: 66px;
  border-bottom: 2px solid #8694ac;
  margin: 0 0 32px;
  position: relative;
}
.aut-tab {
  font-size: 18px;
  padding: 16px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  outline: none;
  line-height: normal;
}
.aut-tab--active {
  font-weight: 600;
  color: #343d4c;
}
.aut-tab--inactive {
  font-weight: 500;
  color: #536179;
}

/* Blue pill indicator — 5px tall, radius 10px */
.aut-tab-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 5px;
  width: 82px;
  background: var(--nc-brand);
  border-radius: 10px;
  transition:
    left 0.25s ease,
    width 0.25s ease;
}

.aut-tab-panel[hidden] {
  display: none;
}

/* ── Article card — Mobile (<1024px)
    Figma 2804:1334 — vertical card: rounded 12, px/py 12, thumb 209px h + overlay,
    tag top-right on image, body gap 16, Read More 1px border #0D74BA.
    ─────────────────────────────────────────────────────── */ 
.aut-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  background: #f1f8fe;
  border: 1px solid var(--nc-n300);
  border-radius: 12px;
  padding: 0px;
  margin-bottom: 32px;
  position: relative;
  min-height: 0;
  overflow: hidden; /* clips thumb corners to card radius */
}

.aut-card__thumb {
  position: relative;
  width: 100%;
  height: 209px;
  min-height: 209px;
  flex-shrink: 0;
  overflow: hidden;
  /* border-radius: 8px; */
}

/* Figma: rgba(12,42,69,0.08) over image */
.aut-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 42, 69, 0.08);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.aut-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aut-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #bee1f9 0%, #e2f0fc 100%);
}

.aut-card__body {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding: 12px;
}

/* body-top: body-text (gap-8) + meta with gap-12 */
.aut-card__body-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Tag chip on image — Figma mobile: top 12 right 12; desktop overrides position */
.aut-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background: #124368;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 16px;
  white-space: nowrap;
}

/* body-text: title + excerpt with gap-8 */
.aut-card__body-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

/* Title — 16px SemiBold #343D4C, line-height 1.405 */
.aut-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #343d4c;
  line-height: 1.405;
  margin: 0;
}
.aut-card__title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aut-card__title a:hover {
  color: var(--nc-brand);
}

/* Excerpt — 12px Regular #536179, 3-line clamp */
.aut-card__excerpt {
  font-size: 12px;
  font-weight: 400;
  color: #536179;
  line-height: normal;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta row — 11px Regular #8694AC */
.aut-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 400;
  color: #8694ac;
}

/* Read More — full-width, 37px; Figma mobile: 1px border #0D74BA */
.aut-card__readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 37px;
  border: 1px solid var(--nc-brand);
  border-radius: 8px;
  color: var(--nc-brand);
  font-size: 12px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 24px;
  text-decoration: none;
  background: transparent;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
  box-sizing: border-box;
}
.aut-card__readmore:hover {
  background: var(--nc-brand);
  color: #fff;
}

/* Pagination — Figma mobile 2804:1334: 8px between items; chevrons 24px target via theme links */
.aut-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}
.aut-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #1e1e1e;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  transition:
    background 0.2s,
    color 0.2s;
}
.aut-pagination .page-numbers.current {
  background: var(--nc-brand);
  color: #f5f5f5;
}
.aut-pagination .page-numbers:hover:not(.current) {
  background: var(--nc-brand-100);
}
.aut-pagination .dots {
  color: #536179;
  font-weight: 700;
}
.aut-pagination .prev,
.aut-pagination .next {
  color: #536179;
}

.aut-no-posts {
  text-align: center;
  padding: 60px 0;
  color: var(--nc-n600);
  font-size: 18px;
}

/* ══════════════════════════════════════════════════════════
    CTA BANNER — Mobile
    Figma: bg #0D74BA, px=16px py=40px
    ══════════════════════════════════════════════════════════ */
.aut-cta {
  background: var(--nc-brand);
  padding: 40px 16px;
  position: relative;
  overflow: hidden;
}
.aut-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Background photo — flipped, offset, semi-transparent */
.aut-cta__inner::before {
  content: "";
  position: absolute;
  left: 253px;
  top: -51px;
  width: 1082px;
  height: 590px;
  background-image: var(--nc-cta-bg, none);
  background-size: cover;
  background-position: center;
  transform: scaleY(-1);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Brand-colour gradient over the photo */
.aut-cta__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0d74ba 0%, rgba(13, 116, 186, 0) 145%);
  pointer-events: none;
  z-index: 1;
}

/* Keep text / button above overlays */
.aut-cta__inner > * {
  position: relative;
  z-index: 2;
}
.aut-cta__h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: normal;
  letter-spacing: -0.64px;
  margin: 0;
}
.aut-cta__sub {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 28px;
  margin: 0;
}
.aut-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--nc-brand);
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  line-height: 24px;
  transition: opacity 0.2s;
}
.aut-cta__btn:hover {
  color: var(--nc-brand);
  opacity: 0.9;
}
.aut-cta__note {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 28px;
}

/* ══════════════════════════════════════════════════════════
    TABLET (768px–1023px) — gentle adjustments
    ══════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
  .aut-hero {
    padding: 48px 32px 0;
  }
  .aut-hero__inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 32px;
  }
  .aut-hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
  }
  .aut-hero__photo {
    width: 300px;
    flex-shrink: 0;
    margin-top: 0;
  }
  .aut-hero__name {
    font-size: 48px;
    max-width: none;
    text-align: left;
  }
  .aut-hero__title {
    font-size: 20px;
    text-align: left;
    max-width: none;
  }
  .aut-hero__edu {
    text-align: left;
    max-width: none;
  }
  .aut-hero__socials {
    justify-content: flex-start;
    margin-top: 0;
  }
  .aut-hero::before {
    height: min(45vh, 380px);
   
  }
  .aut-hero__deco {
    left: auto;
    right: -40px;
    top: 80px;
    transform: none;
    width: 380px;
    height: 380px;
  }
  .aut-hero__deco::after {
    width: 290px;
    height: 290px;
    top: 95px;
    left: 45px;
  }

  .aut-stats-wrap {
    padding: 0 32px;
  }
  .aut-stats {
    flex-direction: row;
    border-radius: 60px;
    padding: 20px 40px;
    align-items: center;
    justify-content: space-between;
  }
  .aut-stat__div {
    width: 1px;
    height: 64px;
    margin: 0;
  }
  .aut-stat__icon {
    width: 51px;
    height: 51px;
  }
  .aut-stat__icon svg {
    width: 38px;
    height: 38px;
  }

  .aut-quote-wrap {
    padding: 24px 32px 32px;
  }
  .aut-quote {
    font-size: 26px;
    text-align: left;
  }

  .aut-about {
    padding: 16px 32px 40px;
    flex-direction: row;
  }
  .aut-about__content {
    flex: 1;
  }
  .aut-expertise {
    flex: 0 0 300px;
  }
  .aut-articles__inner {
    padding: 0 32px;
  }
  .aut-cta {
    padding: 40px 32px;
  }
}

/* ══════════════════════════════════════════════════════════
    DESKTOP ≥ 1024px
    Figma desktop frame: 1440px wide
    Hero content: x=130, y=119; gradient h=472px
    Stats: y=422 from hero top → -50px overlap
    ══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* ── Hero ──
       Figma desktop (2562:8005): 1440×730 hero frame.
       Gradient rect sits top-0 w=1440 h=472.
       Skyline silhouette art positioned at y=92, spanning full width.
       Author photo ellipse at left=861, top=3, size=495.
       Content block at left=130, top=119, w=600. */
  .aut-hero {
    padding: 0;
    background: linear-gradient(180deg, #f1f8fe 0%, #e2f0fc 106.46%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #fff;
    min-height: 472px;
  }

  /* Skyline band: pinned to bottom of 472px gradient (Figma ~380px tall art) */
  .aut-hero::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 380px;
    min-height: 0;
    background-size: cover;
    background-position: center bottom;
/*     opacity: 0.35; */
  }

  /* Decorative ellipses — Figma: left=861, top=3, size=495 in a 1440 frame.
       Right edge sits 84px from frame right edge; cap the hero at 1440px so
       the deco tracks the photo position. */
  .aut-hero__deco {
    top: 3px;
    right: max(0px, calc(50% - 636px));
    left: auto;
    transform: none;
    width: 495px;
    height: 495px;
  }
  .aut-hero__deco::before {
    inset: 0;
    background: rgba(13, 116, 186, 0.1);
  }
  .aut-hero__deco::after {
    top: 128px;
    left: 60px;
    width: 378px;
    height: 378px;
    background: rgba(13, 116, 186, 0.14);
  }

  .aut-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 130px 100px 120px ; /* Figma: content x=130, y=119 */
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
    min-height: 472px;
  }

  .aut-hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 615px;
    flex: 1 1 auto;
  }

  /* Author photo — right side, sits inside the decorative ellipse.
       Figma ellipse box: 495×495 at top=3 of hero frame (y=92 of page).
       Photo is slightly smaller and anchored to the bottom of the gradient. */
  .aut-hero__photo {
    display: block;
    position: absolute;
    right: max(130px, calc(50% - 590px));
    top: 0;
    bottom: auto;
    width: 420px;
    height: 420px;
    margin: 0;
    margin-top: 100px;
    /* border-radius: 0; */
    overflow: hidden;
    z-index: 3;
    aspect-ratio: auto;
    background: transparent;
  }
  .aut-hero__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
  }

  .aut-hero__badge {
    margin: 0;
    padding: 11px 22px;
  }
  .aut-hero__badge-text {
    font-size: 14px;
  }

  .aut-hero__name {
    font-size: 60px;
    font-weight: 600;
    line-height: 60px;
    margin: 0;
    max-width: none;
  }
  .aut-hero__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
    text-align: left;
    max-width: none;
  }
  .aut-hero__edu {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
    max-width: 615px;
  }
  .aut-hero__socials {
    justify-content: flex-start;
    margin-top: 0;
  }

  /* ── Stats bar ── */
  /* Figma: stats at y=422 from hero top. Gradient ends at 472px. Overlap = 50px */
  .aut-stats-wrap {
    max-width: 1440px;
    margin: -50px auto 0;
    padding: 0 130px;
  }
  .aut-stats {
    border-radius: 100px; /* Figma: rounded-[100px] pill shape */
    padding: 24px 80px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .aut-stat { gap: 20px; }
  .aut-stat__icon {
    width: 67px;
    height: 67px;
  }
  .aut-stat__icon svg {
    width: 36px;
    height: 36px;
  }
  .aut-stat__num {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.5px;
  }
  .aut-stat__lbl {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Vertical dividers on desktop */
  .aut-stat__div {
    width: 1px;
    height: 48px;
    background: var(--nc-n300);
    margin: 0;
    flex-shrink: 0;
  }

  /* ── Pull quote ── */
  /* Figma desktop: big " at left=52, top=522 within hero; quote text at left=130, top=616 */
  .aut-quote-wrap {
    max-width: 1440px;
    margin: 20px auto 0;
    padding: 60px 130px 30px;
  }
  .aut-quote-mark {
    left: 80px;
    top: 0;
    font-size: 100px;
  }
  .aut-quote {
    font-size: 32px;
    line-height: 48px;
    text-align: left;
  }

  /* ── About + Expertise — two columns ── */
  /* Figma: content w=750 left=129, expertise w=392 left=918 */
  .aut-about {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 130px 60px;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
  .aut-about__content {
    flex: 0 0 750px;
  }
  .aut-about__heading {
    font-size: 32px;
  }
  .aut-about__sec p {
    text-align: justify;
  }

  .aut-expertise {
    flex: 0 0 392px; /* Figma: 392px */
    position: sticky;
    top: 100px;
  }
  /* Desktop expertise font sizes: 14px */
  .aut-exp-label {
    font-size: 14px;
  }
  .aut-exp-list {
    font-size: 14px;
    padding-left: 21px;
  }

  /* ── Articles (desktop: undo mobile-only article chrome) ── */
  .aut-articles {
    padding: 40px 0 60px;
    background: transparent;
  }
  .aut-articles__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 130px;
  }
  .aut-articles__heading {
    font-size: 32px;
    margin-bottom: 0;
  }

  .aut-tabs {
    align-items: stretch;
    min-height: 0;
    margin-bottom: 20px;
  }

  .aut-tab--active {
    font-weight: 700;
  }

  .aut-pagination {
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 16px;
  }

  /* ── Desktop article card ──
      Figma: 1180×206px, bg #F1F8FE, rounded-[10px]
      thumb: 280×206, flush left; body: h=140, vertically centred in 206px
      body-top: fills 140px with justify-between (text top, meta bottom)
      tag: absolute top=16 left=16; readmore: absolute right=24 bottom=24
      ─────────────────────────────────────────────────────────────────── */
  .aut-card {
    flex-direction: row;
    padding: 0;
    border: 1px solid var(--nc-n300);
    border-radius: 10px;
    gap: 32px; /* Figma: gap-[32px] between thumb and body */
    margin-bottom: 20px;
    align-items: center; /* vertically centre the 140px body in 206px card */
    min-height: 206px;

  }

  .aut-card__thumb {
    width: 280px;
    height: 206px;
    min-height: 206px;
    /* border-radius: 16px 16px 0 0; Figma: top corners rounded */
    flex-shrink: 0;
    position: relative;
  }

  /* body: 140px tall, flex-col, justify-between (body-top top, meta bottom).
     Right padding reserves space for the absolutely-positioned Read More button
     (button right=24 + min-width=102 + 24px gap = 150, plus buffer). */
  .aut-card__body {
    flex: 1;
    width: auto;
    height: 140px;
    gap: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 170px 0 0;
    min-width: 0;
  }

  /* body-top: fills entire 140px body, space-between pushes body-text top, meta bottom */
  .aut-card__body-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0; /* no gap; justify-between handles spacing */
  }

  /* body-text: title + excerpt with gap-8 */
  .aut-card__body-text {
    gap: 8px;
    overflow: hidden;
    flex: none;
  }

  /* Tag: absolute chip over thumb (Figma desktop: top=16, left=16) */
  .aut-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    right: auto;
    font-size: 12px;
    align-self: auto;
  }

  .aut-card__title a {
    display: inline;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }

  .aut-card__title {
    font-size: 18px;
  }
  .aut-card__excerpt {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  /* Meta: 12px, colour #3F3F3F (heading colour on desktop) */
  .aut-card__meta {
    font-size: 12px;
    color: #3f3f3f;
  }

  /* Read More: absolute right=24 bottom=24, w=102px (Figma: left=1054 in 1180px card) */
  .aut-card__readmore {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: auto;
    min-width: 102px;
    height: 37px;
    padding: 7px 28px;
    font-size: 12px;
    background: #fff;
    z-index: 2;
    border-width: 2px;
  }

  /* ── CTA ── */
  /* Figma desktop: outer white div px=80 py=40, inner blue rounded-[32px] p=40 w=1181 */
  .aut-cta {
    background: #fff; /* outer is white on desktop */
    padding: 40px 80px;
    overflow: visible;
  }
  .aut-cta__inner {
    background: var(--nc-brand); /* inner blue box */
    border-radius: 32px;
    padding: 40px;
    max-width: 1181px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }
  .aut-cta__h2 {
    font-size: 48px;
    letter-spacing: -0.96px;
  }
  .aut-cta__sub {
    font-size: 24px;
    line-height: 32px;
    max-width: 934px;
  }
  .aut-cta__btn {
    width: auto;
    box-shadow: 0 4px 25px rgba(0, 62, 102, 0.26);
  }
  .aut-cta__note {
    font-size: 18px;
    line-height: 28px;
  }
}
