/* ===============================
   LAKEFRONT SPORTS — AUTHOR PAGE v2
   Extends about page design system.
   (styles_about_v3.css conventions)
================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;600;700;800;900&display=swap');

/* ===============================
   CSS VARIABLES & THEME
================================ */
:root {
  --navy:      #081b2e;
  --navy-2:    #0c243b;
  --red:       #e5392d;
  --orange:    #c83803;
  --sidebar-w: 260px;
  --topbar-h:  52px;
  --radius:    12px;
}

[data-theme="light"] {
  --bg:               #f5f5f3;
  --text:             #0d1b2a;
  --card:             #ffffff;
  --muted:            #6b7c8f;
  --card-border:      rgba(0,0,0,0.06);
  --card-shadow:      0 2px 8px rgba(0,0,0,0.05);
  --card-shadow-hover:0 8px 24px rgba(0,0,0,0.12);
  --surface:          #f0f0ee;
  --border:           rgba(0,0,0,0.08);
}

[data-theme="dark"] {
  --bg:               #0a0a0f;
  --text:             #e8e8e8;
  --card:             #151520;
  --muted:            #7a8899;
  --card-border:      rgba(255,255,255,0.06);
  --card-shadow:      0 2px 8px rgba(0,0,0,0.2);
  --card-shadow-hover:0 8px 24px rgba(0,0,0,0.35);
  --surface:          #1a1a28;
  --border:           rgba(255,255,255,0.07);
}

/* ===============================
   RESET & BASE
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
  width: 100%;
  min-width: 0;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ===============================
   APP SHELL
================================ */
.app-shell { display: flex; min-height: 100vh; width: 100%; }

/* ===============================
   SIDEBAR — shared with about
================================ */
.sidebar {
  width: var(--sidebar-w);
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 90;
  display: flex; flex-direction: column;
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin;
  background: linear-gradient(135deg, var(--navy) 0%, #030a14 100%);
  border-right: 4px solid var(--red);
  box-shadow: 4px 0 20px rgba(0,0,0,0.3);
}
.sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
.sidebar-brand { padding: 14px 16px 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sidebar-logo { height: 44px; width: auto; transition: transform 0.3s ease; }
.sidebar-logo:hover { transform: scale(1.03); }
.sidebar-theme { padding: 7px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.theme-toggle-btn {
  width: 100%; padding: 5px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5); font: 600 10px 'Manrope', sans-serif;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 4px; transition: all 0.2s;
}
.theme-toggle-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
.sidebar-nav { flex: 1; padding: 4px 0; }
.nav-section-label { padding: 7px 16px 2px; font-size: 9px; font-weight: 800; letter-spacing: 0.13em; color: rgba(255,255,255,0.18); text-transform: uppercase; }
.sidebar-nav-item {
  display: flex; align-items: center; gap: 8px; padding: 7px 16px;
  color: rgba(255,255,255,0.48); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.12s; text-decoration: none;
  border-left: 3px solid transparent;
}
.sidebar-nav-item:hover  { color: #fff; background: rgba(255,255,255,0.03); }
.sidebar-nav-item.active { color: #fff; background: rgba(255,255,255,0.05); border-left-color: var(--red); }
.sidebar-nav-item .nav-icon    { font-size: 14px; width: 16px; text-align: center; }
.sidebar-nav-item .nav-chevron { margin-left: auto; font-size: 8px; color: rgba(255,255,255,0.15); transition: transform 0.2s; }
.sidebar-nav-item .nav-chevron.open { transform: rotate(90deg); }
.sidebar-nav-item .nav-badge  { margin-left: auto; font-size: 8px; font-weight: 800; background: rgba(138,43,226,0.5); color: #fff; padding: 1px 5px; border-radius: 2px; }
.subnav { overflow: hidden; transition: max-height 0.25s ease; max-height: 0; background: rgba(0,0,0,0.18); }
.subnav a { display: block; padding: 4px 16px 4px 44px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.28); text-decoration: none; transition: all 0.1s; }
.subnav a:hover { color: #fff; background: rgba(255,255,255,0.03); }
.subnav .zone-link { color: rgba(255,255,255,0.5); font-weight: 700; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 5px; margin-top: 2px; }
.sidebar-social { padding: 9px 16px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; gap: 12px; justify-content: center; }
.sidebar-social a { color: rgba(255,255,255,0.22); display: flex; transition: color 0.2s; }
.sidebar-social a:hover { color: #fff; }

/* ===============================
   MAIN CONTENT
================================ */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1; min-height: 100vh;
  display: flex; flex-direction: column;
  overflow-x: clip; min-width: 0;
}

/* ===============================
   DESKTOP TOPBAR
================================ */
.topbar-desk {
  height: var(--topbar-h); position: sticky; top: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; gap: 12px;
  border-bottom: 3px solid transparent; backdrop-filter: blur(10px);
}
[data-theme="light"] .topbar-desk { background: linear-gradient(135deg, var(--navy) 0%, #030a14 100%); color: #fff; }
[data-theme="dark"]  .topbar-desk { background: rgba(10,10,15,0.95); }

.topbar-breadcrumb { display: flex; align-items: center; gap: 5px; }
.topbar-crumb { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.topbar-crumb:hover { color: #fff; }
.topbar-crumb-sep { color: rgba(255,255,255,0.2); font-size: 11px; }
.topbar-crumb-current { color: rgba(255,255,255,0.75); cursor: default; }

.topbar-actions { display: flex; align-items: center; gap: 6px; }
.topbar-btn { padding: 5px 10px; border-radius: 6px; font: 700 9px 'Manrope', sans-serif; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.topbar-btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.topbar-btn-ghost:hover { border-color: var(--red); color: var(--red); }
.topbar-btn-primary { background: var(--red); color: #fff; }
.topbar-btn-primary:hover { background: #ff4444; transform: translateY(-1px); }

/* ===============================
   MOBILE HEADER
================================ */
.mobile-header {
  display: none; position: sticky; top: 0; z-index: 100;
  flex-direction: column;
  background: linear-gradient(135deg, var(--navy) 0%, #030a14 100%);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  width: 100%; max-width: 100vw; overflow: hidden;
}
.mobile-header-top { display: flex; align-items: center; justify-content: space-between; padding: 7px 12px; min-height: 44px; }
.mobile-logo { height: 33px; width: auto; }
.mobile-btn { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; padding: 3px; }

/* ===============================
   MOBILE DRAWER
================================ */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  transform: translateX(-100%); transition: transform 0.3s ease;
  background: linear-gradient(135deg, var(--navy) 0%, #030a14 100%);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-drawer-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.mobile-drawer-body { flex: 1; padding: 6px 0; overflow-y: auto; }

/* ===============================
   AUTHOR HERO
================================ */
.author-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #030a14 55%, #0c0c1a 100%);
  border-bottom: 3px solid var(--red);
  padding: 48px 22px 0;
  position: relative;
  overflow: hidden;
}

/* Grid texture — matches about hero */
.author-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.author-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(229,57,45,0.16) 0%, transparent 70%);
}

.author-hero-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding-bottom: 36px;
}

/* Avatar */
.author-avatar-wrap { position: relative; flex-shrink: 0; }
.author-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid var(--red);
  object-fit: cover; object-position: center top;
  display: block;
  box-shadow: 0 0 0 5px rgba(229,57,45,0.15), 0 8px 30px rgba(0,0,0,0.4);
}
.author-avatar-badge {
  position: absolute; bottom: 2px; right: 2px;
  width: 28px; height: 28px;
  background: var(--red); border-radius: 50%;
  font-size: 13px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy);
}

/* Hero info */
.author-hero-info { flex: 1; min-width: 0; }

.author-hero-eyebrow {
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--red); text-transform: uppercase; margin-bottom: 6px;
}

.author-hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92; letter-spacing: 1px;
  color: #fff; margin-bottom: 6px;
}

.author-hero-title {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* Social pills */
.author-hero-social { display: flex; flex-wrap: wrap; gap: 8px; }

.author-social-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: all 0.2s;
}
.author-social-pill:hover {
  color: #fff; border-color: var(--red);
  background: rgba(229,57,45,0.12);
}

/* Stat strip */
.author-hero-stats {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.author-hero-stat { flex: 1; text-align: center; padding: 16px 12px; }
.author-hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.5px; color: var(--red); line-height: 1; margin-bottom: 3px; }
.author-hero-stat-label { font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.author-hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.07); flex-shrink: 0; }

/* ===============================
   AUTHOR BODY
================================ */
.author-body {
  max-width: 800px; width: 100%;
  margin: 0 auto; padding: 40px 22px 0;
}

.author-section { margin-bottom: 52px; }

.author-section-label {
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--red); text-transform: uppercase; margin-bottom: 6px;
}

.author-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 0.5px;
  color: var(--text); margin-bottom: 18px; line-height: 1.1;
}

.author-prose p {
  font-size: 15px; line-height: 1.75;
  color: var(--text); margin-bottom: 14px; opacity: 0.9;
}

/* ===============================
   COVERAGE CARDS
================================ */
.author-coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.author-coverage-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border-top: 3px solid transparent;
}
.author-coverage-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }

.coverage-bears  { border-top-color: #c83803; }
.coverage-hawks  { border-top-color: #caa75c; }
.coverage-bulls  { border-top-color: #ce1141; }
.coverage-cubs   { border-top-color: #0e3386; }
.coverage-sox    { border-top-color: #c4ced4; }

.coverage-bears:hover  { background: rgba(200,56,3,0.06); }
.coverage-hawks:hover  { background: rgba(202,167,92,0.06); }
.coverage-bulls:hover  { background: rgba(206,17,65,0.06); }
.coverage-cubs:hover   { background: rgba(14,51,134,0.08); }
.coverage-sox:hover    { background: rgba(196,206,212,0.06); }

.coverage-card-icon  { font-size: 24px; }
.coverage-card-name  { font-size: 11px; font-weight: 800; line-height: 1.2; }
.coverage-card-topics { font-size: 8px; color: var(--muted); line-height: 1.5; font-weight: 600; }

/* ===============================
   EDITORIAL STANDARDS GRID
   (matches about page exactly)
================================ */
.author-standards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.author-standard-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 20px;
  transition: box-shadow 0.2s;
}
.author-standard-card:hover { box-shadow: var(--card-shadow-hover); }

.standard-icon  { font-size: 20px; margin-bottom: 8px; }
.standard-title { font-size: 13px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.standard-desc  { font-size: 12px; line-height: 1.6; color: var(--muted); }
.standard-desc a { display: block; margin-top: 4px; color: var(--red); font-weight: 700; }
.standard-desc a:hover { text-decoration: underline; }

/* ===============================
   ARTICLE GRID
================================ */
.author-articles-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}

.author-articles-loading {
  grid-column: 1 / -1; text-align: center;
  padding: 40px; color: var(--muted); font-size: 12px;
}

/* Article card — styled to match team zone pages */
.author-article-card {
  display: grid; grid-template-columns: 140px 1fr;
  border-radius: 10px; overflow: hidden;
  cursor: pointer; text-decoration: none; color: var(--text);
  transition: all 0.22s; background: var(--card);
  box-shadow: var(--card-shadow);
}
.author-article-card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }

.author-card-image { position: relative; overflow: hidden; min-height: 110px; }
.author-card-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.4s; }
.author-article-card:hover .author-card-image img { transform: scale(1.04); }
.author-card-accent { position: absolute; top: 0; left: 0; bottom: 0; width: 3px; z-index: 2; }

/* Accent colors by sport */
.accent-bears      { background: linear-gradient(135deg, #0b162a, #c83803); }
.accent-blackhawks { background: linear-gradient(135deg, #000, #cf0a2c); }
.accent-bulls      { background: linear-gradient(135deg, #000, #ce1141); }
.accent-cubs       { background: linear-gradient(135deg, #0e3386, #cc3433); }
.accent-whitesox   { background: linear-gradient(135deg, #27251f, #c4ced4); }
.accent-default    { background: linear-gradient(135deg, var(--navy), var(--red)); }

.author-card-body { padding: 12px 14px; display: flex; flex-direction: column; justify-content: center; }
.author-card-tag { display: inline-block; padding: 2px 7px; border-radius: 3px; font-size: 8px; font-weight: 800; letter-spacing: 0.06em; color: #fff; background: var(--navy); margin-bottom: 5px; align-self: flex-start; }
.author-card-title { font-size: 12px; font-weight: 800; line-height: 1.25; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.author-card-meta { font-size: 9px; color: var(--muted); margin-top: 4px; }
.author-card-read { font-size: 9px; font-weight: 700; color: var(--red); margin-top: 6px; display: inline-flex; align-items: center; gap: 3px; transition: gap 0.2s; }
.author-article-card:hover .author-card-read { gap: 6px; }

/* Load more */
.author-articles-more { text-align: center; padding: 16px 0 4px; }
.author-load-more-btn {
  background: transparent; border: 2px dashed var(--card-border);
  color: var(--muted); padding: 10px 28px; border-radius: 10px;
  font: 700 11px 'Manrope', sans-serif; cursor: pointer; transition: all 0.2s;
}
.author-load-more-btn:hover { border-color: var(--red); color: var(--red); background: rgba(229,57,45,0.04); }

/* ===============================
   CTA STRIP — identical to about page
================================ */
.about-cta-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin-bottom: 52px;
}
.about-cta-card {
  border-radius: var(--radius); padding: 24px 20px;
  border: 1px solid var(--card-border);
  display: flex; flex-direction: column; gap: 6px;
}
.about-cta-contact { background: var(--card); }
.about-cta-write   { background: linear-gradient(135deg, rgba(200,56,3,0.12) 0%, var(--card) 100%); border-color: rgba(200,56,3,0.2); }
.about-cta-follow  { background: var(--card); }
.about-cta-icon    { font-size: 22px; margin-bottom: 4px; }
.about-cta-title   { font-size: 14px; font-weight: 800; color: var(--text); }
.about-cta-desc    { font-size: 12px; color: var(--muted); line-height: 1.5; flex: 1; }
.about-cta-btn {
  display: inline-flex; align-items: center;
  padding: 7px 14px; border-radius: 7px;
  font: 700 11px 'Manrope', sans-serif; text-decoration: none;
  margin-top: 6px; transition: all 0.2s; align-self: flex-start;
}
.about-cta-btn-ghost  { border: 1px solid var(--card-border); color: var(--text); }
.about-cta-btn-ghost:hover { border-color: var(--red); color: var(--red); }
.about-cta-btn-orange { background: var(--orange); color: #fff; }
.about-cta-btn-orange:hover { background: #e04200; transform: translateY(-1px); }

/* ===============================
   FOOTER
================================ */
.site-footer { margin-top: 20px; padding: 30px 22px 20px; border-top: 1px solid var(--card-border); }
[data-theme="light"] .site-footer { background: #fafaf8; }
[data-theme="dark"]  .site-footer { background: #0d0d14; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 22px; max-width: 900px; margin: 0 auto; }
.footer-tagline   { font-size: 10px; color: var(--muted); line-height: 1.4; }
.footer-col-title { font-size: 8px; font-weight: 800; letter-spacing: 0.1em; margin-bottom: 6px; text-transform: uppercase; }
.footer-link { display: block; font-size: 10px; color: var(--muted); padding: 2px 0; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--red); }
.footer-bottom { margin-top: 22px; padding-top: 12px; border-top: 1px solid var(--card-border); text-align: center; }
.footer-copy { font-size: 9px; color: var(--muted); }
.footer-disclaimer { font-size: 8px; color: var(--muted); opacity: 0.5; margin-top: 3px; line-height: 1.3; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.35s ease-out backwards; }

/* ===============================
   DESKTOP SIDEBAR LARGER SIZES
================================ */
@media (min-width: 1025px) {
  .sidebar .nav-section-label         { font-size: 10px; }
  .sidebar .sidebar-nav-item          { font-size: 13px; }
  .sidebar .sidebar-nav-item .nav-icon    { font-size: 15px; }
  .sidebar .sidebar-nav-item .nav-chevron { font-size: 9px; }
  .sidebar .sidebar-nav-item .nav-badge   { font-size: 9px; }
  .sidebar .subnav a                  { font-size: 11px; }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .sidebar       { display: none; }
  .main-content  { margin-left: 0; max-width: 100vw; }
  .mobile-header { display: flex; }
  .topbar-desk   { display: none; }

  .author-hero { padding: 36px 16px 0; }
  .author-hero-inner { gap: 18px; }
  .author-hero-name { font-size: clamp(36px, 10vw, 56px); }

  .author-body { padding: 28px 16px 0; }

  .author-coverage-grid { grid-template-columns: 1fr 1fr 1fr; }
  .author-standards-grid { grid-template-columns: 1fr 1fr; }
  .about-cta-strip { grid-template-columns: 1fr; }
  .author-articles-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .site-footer { padding: 18px 16px 14px; }

  /* Mobile centering */
  .author-section-label,
  .author-section-title,
  .author-hero-eyebrow,
  .author-hero-name,
  .author-hero-title,
  .author-prose p            { text-align: center; }

  .author-hero-social        { justify-content: center; }
  .author-hero-inner         { flex-direction: column; align-items: center; }

  .about-cta-icon,
  .about-cta-title,
  .about-cta-desc            { text-align: center; }
  .about-cta-btn             { align-self: center; }

  /* Standard cards — center all content */
  .standard-icon,
  .standard-title,
  .standard-desc             { text-align: center; }

  /* Footer — center all column links */
  .footer-col-title,
  .footer-link               { text-align: center; }

  .footer-grid > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .footer-grid > div:first-child .footer-tagline { text-align: center; }
  .footer-grid > div:first-child > div[style] { justify-content: center; }
}

@media (max-width: 600px) {
  .author-hero-inner { flex-direction: column; align-items: center; gap: 14px; padding-bottom: 28px; }
  .author-avatar { width: 90px; height: 90px; }
  .author-hero-name { font-size: clamp(36px, 12vw, 52px); }
  .author-hero-stats { flex-direction: row; flex-wrap: wrap; }
  .author-hero-stat { min-width: 50%; }
  .author-hero-stat-divider { display: none; }

  .author-coverage-grid { grid-template-columns: 1fr 1fr; }
  .author-standards-grid { grid-template-columns: 1fr; }

  .author-article-card { grid-template-columns: 90px 1fr; }
  .author-card-image   { min-height: 90px; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .author-coverage-grid { grid-template-columns: 1fr; }
}
