/* ========== RESET & ROOT ========== */
::selection { background: rgba(26,122,60,0.2); color: inherit; }
::-moz-selection { background: rgba(26,122,60,0.2); color: inherit; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --g1: #1A7A3C;
  --g2: #22963F;
  --g3: #2DB34A;
  --g4: #4DC96A;
  --g-pale: #E8F5EC;
  --g-light: #B8E4C4;
  --white: #FFFFFF;
  --off: #F5F8F6;
  --off2: #EBF2EE;
  --border: #DCEAE1;
  --border2: #C4DAC9;
  --text: #111F16;
  --mid: #3A5642;
  --muted: #688573;
  --subtle: #9DBAA5;
  --accent: #22963F;
  --accent-pale: #E8F5EC;
  --footer-bg: #1C1C1C;
  --serif: 'Merriweather', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 4px rgba(26,122,60,0.07);
  --shadow-md: 0 4px 20px rgba(26,122,60,0.11);
  --shadow-lg: 0 12px 40px rgba(26,122,60,0.14);
}
body { font-family: var(--sans); background: var(--off); color: var(--text); line-height: 1.65; font-size: 15px; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; }
ul { list-style: none; }

/* ========== ANNOUNCEMENT BAR ========== */
.ann-bar { background: var(--g1); color: rgba(255,255,255,.85); text-align: center; padding: .45rem 1rem; font-size: .7rem; letter-spacing: .04em; }
.ann-bar strong { color: #fff; }

/* ========== NAVIGATION ========== */
.main-nav { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; box-shadow: var(--shadow-sm); }
.nav-wrap { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 1.5rem; gap: 1.5rem; }
.logo-area { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.nav-menu-wrap { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: 2rem; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .8rem; font-weight: 500; color: var(--mid); letter-spacing: .01em; transition: color .15s; white-space: nowrap; }
.nav-links a:hover, .nav-links .current-menu-item a, .nav-links .current-cat a { color: var(--g1); }
.nav-right { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.btn-ghost { border: 1px solid var(--border2); border-radius: 7px; padding: .42rem 1rem; font-size: .78rem; font-weight: 500; color: var(--mid); background: #fff; transition: all .15s; cursor: pointer; }
.btn-ghost:hover { border-color: var(--g2); color: var(--g1); }
.btn-green { background: var(--g2); color: #fff; border-radius: 7px; padding: .46rem 1.15rem; font-size: .78rem; font-weight: 600; border: none; transition: background .15s; letter-spacing: .01em; cursor: pointer; }
.btn-green:hover { background: var(--g1); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: .4rem; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--mid); border-radius: 2px; transition: all .2s; }

/* ========== HERO ========== */
.home-hero { background: #fff; border-bottom: 1px solid var(--border); }
.home-hero-wrap { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; align-items: center; }
.home-hero-left { padding: 2rem 3rem 2rem 0; display: flex; flex-direction: column; justify-content: center; }
.home-eyebrow { font-size: .95rem; font-weight: 600; color: var(--g2); margin-bottom: .8rem; }
.home-hero-left h1 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3.2rem); color: var(--text); line-height: 1.15; font-weight: 700; margin-bottom: .8rem; }
.home-hero-left p { font-size: .95rem; color: var(--mid); line-height: 1.8; font-weight: 300; max-width: 480px; margin-bottom: 1.5rem; }
.home-ctas { display: flex; gap: .85rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.home-ctas .btn-primary { background: var(--g2); color: #fff; border: none; border-radius: 8px; padding: .82rem 1.75rem; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: var(--sans); transition: background .15s; } /* Matched pink */
.home-ctas .btn-primary:hover { background: var(--g1); }
.home-ctas .btn-secondary { background: #fff; color: var(--g2); border: 1px solid var(--g2); border-radius: 8px; padding: .8rem 1.5rem; font-size: .9rem; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: all .15s; } /* Thin border pink */
.home-ctas .btn-secondary:hover { background: #FCE8F0; }
.home-trust-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.htrust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem; max-width: 140px; }
.htrust-ico { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--mid); margin-bottom: -0.2rem; }
.htrust-ico svg { width: 28px; height: 28px; stroke: var(--mid); stroke-width: 1.5; fill: none; }
.htrust-lbl { font-size: .85rem; font-weight: 500; color: var(--text); line-height: 1.35; }
.home-hero-right { position: relative; overflow: visible; padding: 2rem 0; }
.home-hero-right img.hero-photo { width: 100%; height: 380px; object-fit: cover; object-position: center top; border-radius: 16px; display: block; box-shadow: 0 12px 40px rgba(13,107,82,0.15); }

/* Medically Reviewed floating card on hero image */
.home-medrev-card { position: absolute; bottom: 1.5rem; left: 1.5rem; background: #fff; border-radius: 12px; padding: 1.25rem 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 1rem; max-width: 380px; z-index: 10; }
.home-medrev-card .mrc-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--g1); padding: 4px; }
.home-medrev-card .mrc-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.home-medrev-card .mrc-text h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.home-medrev-card .mrc-text p { font-size: .78rem; color: var(--mid); line-height: 1.4; margin-bottom: .4rem; }
.home-medrev-card .mrc-text a { font-size: .8rem; color: var(--g2); font-weight: 600; display: inline-flex; align-items: center; gap: .25rem; }
.home-medrev-card .mrc-text a:hover { color: var(--g1); }

/* ========== FEATURED ARTICLES SECTION ========== */
.hfeat-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.25rem; margin-bottom: 3rem; }
.hfeat-main { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; cursor: pointer; transition: box-shadow .2s, transform .2s; }
.hfeat-main:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.hfeat-main-thumb { height: 240px; position: relative; border-bottom: 1px solid var(--border); overflow: hidden; }
.hfeat-main-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hfeat-trending { position: absolute; top: 1rem; left: 1rem; background: var(--g2); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 3px; }
.hfeat-main-body { padding: 1.4rem; }
.hfeat-cat { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g1); margin-bottom: .55rem; }
.hfeat-main-body h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--text); line-height: 1.32; font-weight: 700; margin-bottom: .65rem; }
.hfeat-main-body p { font-size: .83rem; color: var(--mid); line-height: 1.7; font-weight: 300; }
.hfeat-card-meta { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; font-size: .72rem; color: var(--muted); }
.hfeat-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); display: inline-block; }
.hfeat-side-stack { display: flex; flex-direction: column; gap: 1rem; }
.hfeat-side-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: flex; cursor: pointer; transition: box-shadow .2s; min-height: 100px; }
.hfeat-side-card:hover { box-shadow: var(--shadow-md); }
.hfeat-side-thumb { width: 90px; flex-shrink: 0; overflow: hidden; position: relative; }
.hfeat-side-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hfeat-side-thumb.t2 { background: #FFF3E8; }
.hfeat-side-thumb.t3 { background: #F0EBF8; }
.hfeat-side-body { padding: .85rem 1rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hfeat-side-cat { font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--g1); margin-bottom: .3rem; }
.hfeat-side-body h4 { font-family: var(--serif); font-size: .87rem; color: var(--text); line-height: 1.38; font-weight: 700; }
.hfeat-side-meta { font-size: .7rem; color: var(--muted); margin-top: .35rem; }

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

/* ========== EXPLORE TOPICS CAROUSEL ========== */
.explore-topics { background: #fff; padding: 3rem 1.5rem; }
.explore-topics-inner { max-width: 1180px; margin: 0 auto; }
.explore-topics-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; border-bottom: none; padding-bottom: 0; }
.explore-topics-hd h2 { font-family: var(--sans); font-size: 1.5rem; color: var(--text); font-weight: 700; }
.explore-topics-hd a { font-size: .85rem; font-weight: 600; color: var(--g1); text-decoration: none; }
.explore-topics-hd a:hover { text-decoration: underline; }
.topic-carousel { display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; padding-bottom: .5rem; scrollbar-width: none; }
.topic-carousel::-webkit-scrollbar { display: none; }
.topic-card { flex: 0 0 calc((100% - 5rem)/6); min-width: 160px; cursor: pointer; transition: transform .2s; text-decoration: none; }
.topic-card:hover { transform: translateY(-3px); }
.topic-card-img { border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; position: relative; margin-bottom: .8rem; background: var(--g-pale); }
.topic-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.topic-card:hover .topic-card-img img { transform: scale(1.06); }
.topic-card-name { font-size: .95rem; font-weight: 700; color: var(--text); line-height: 1.3; font-family: var(--sans); text-align: left; }

.carousel-bottom-ctrls { position: relative; display: flex; align-items: center; justify-content: center; margin-top: 1.5rem; }
.carousel-dots { display: flex; justify-content: center; gap: .4rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border2); cursor: pointer; transition: all .2s; border: none; padding: 0; }
.carousel-dot.active { background: var(--g1); width: 20px; border-radius: 4px; }
.carousel-arrows { position: absolute; right: 0; display: flex; gap: .6rem; }
.carousel-btn { width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text); transition: all .15s; }
.carousel-btn:hover { background: var(--off2); border-color: var(--muted); }
.carousel-btn svg { width: 18px; height: 18px; }

/* ========== SECTION CHROME ========== */
.section { max-width: 1180px; margin: 0 auto; padding: 3rem 1.5rem; }
.sec-hd { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.75rem; padding-bottom: .85rem; border-bottom: 2px solid var(--border); }
.sec-hd h2 { font-family: var(--serif); font-size: 1.4rem; color: var(--text); font-weight: 700; }
.sec-hd h2 span { color: var(--g2); }
.sec-hd a, .sec-hd-link { font-size: .77rem; font-weight: 600; color: var(--g1); letter-spacing: .02em; }
.sec-hd-link:hover { color: var(--g2); }

/* ========== ARTICLE CARDS ========== */
.art-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.15rem; }
.art-card { background: #fff; border: 1px solid var(--border); border-radius: 11px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: box-shadow .2s, transform .2s; }
.art-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.art-thumb { height: 155px; display: flex; align-items: center; justify-content: center; position: relative; background: var(--g-pale); overflow: hidden; }
.art-thumb img { width: 100%; height: 100%; object-fit: cover; }
.art-thumb.c2 { background: #FFF3E8; }
.art-thumb.c3 { background: #F0EBF8; }
.art-thumb.c4 { background: #E8F0F8; }
.art-thumb.c5 { background: #FCF0EB; }
.art-thumb.c6 { background: #EFF8EC; }
.art-badge { position: absolute; bottom: .65rem; left: .65rem; font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .22rem .6rem; border-radius: 3px; }
.bg-green { background: var(--g2); color: #fff; }
.bg-gold { background: #C87D2A; color: #fff; }
.bg-plum { background: #7356A8; color: #fff; }
.bg-blue { background: #2A6FA8; color: #fff; }
.bg-rust { background: #A84B2A; color: #fff; }
.bg-teal { background: #0D6B52; color: #fff; }
.art-body { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.art-body h3 { font-family: var(--serif); font-size: .9rem; color: var(--text); line-height: 1.45; font-weight: 700; flex: 1; margin-bottom: .7rem; }
.art-foot { display: flex; align-items: center; justify-content: space-between; padding-top: .65rem; border-top: 1px solid var(--border); }
.av { width: 26px; height: 26px; border-radius: 50%; background: var(--g-pale); display: flex; align-items: center; justify-content: center; font-size: .58rem; font-weight: 700; color: var(--g1); flex-shrink: 0; border: 1px solid var(--g-light); }
.author-row { display: flex; align-items: center; gap: .45rem; }
.aname { font-size: .7rem; color: var(--mid); }
.rtime { font-size: .68rem; color: var(--muted); }
.medrev-badge { display: inline-flex; align-items: center; gap: .3rem; background: var(--g-pale); color: var(--g1); font-size: .63rem; font-weight: 600; padding: .2rem .55rem; border-radius: 3px; border: 1px solid var(--g-light); margin-top: .9rem; }

/* ========== EXPERT STRIP ========== */
.expert-strip { background: var(--g-pale); border-top: 1px solid var(--g-light); border-bottom: 1px solid var(--g-light); padding: 3rem 1.5rem; }
.expert-strip-inner { max-width: 780px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2.5rem; }
.exp-photo-wrap { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 3px solid var(--g-light); flex-shrink: 0; margin: 0 auto 0.5rem; }
.exp-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.exp-quote { font-family: var(--serif); font-size: 1rem; color: var(--mid); line-height: 1.75; font-style: italic; font-weight: 300; }
.exp-quote strong { font-style: normal; color: var(--g1); }

/* ========== NEWSLETTER ========== */
.nl-section { background: linear-gradient(155deg,var(--g1) 0%,#074030 100%); padding: 4.5rem 1.5rem; }
.nl-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.nl-chip { display: inline-flex; align-items: center; gap: .45rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: .3rem .9rem; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 1.1rem; }
.nl-inner h2 { font-family: var(--serif); font-size: 2rem; color: #fff; font-weight: 700; margin-bottom: .7rem; line-height: 1.2; }
.nl-inner p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.75rem; }
.nl-form { display: flex; gap: .65rem; margin-bottom: 1.1rem; }
.nl-form input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: .72rem 1rem; color: #fff; font-family: var(--sans); font-size: .86rem; outline: none; transition: border-color .15s; }
.nl-form input::placeholder { color: rgba(255,255,255,.28); }
.nl-form input:focus { border-color: rgba(255,255,255,.45); }
.nl-form button { background: #fff; color: var(--g1); border: none; padding: .72rem 1.5rem; border-radius: 8px; font-family: var(--sans); font-weight: 700; font-size: .86rem; cursor: pointer; white-space: nowrap; }
.nl-perks { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.nl-perk { font-size: .7rem; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: .35rem; }
.pdot { width: 4px; height: 4px; border-radius: 50%; background: var(--g4); flex-shrink: 0; }

/* ========== TRUST METRICS BAR ========== */
.trust-metrics-bar { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 1.5rem; }
.trust-metrics-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.tmet-stat { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.tmet-stat .num { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--g1); line-height: 1; }
.tmet-stat .lbl { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ========== CATEGORY/ARCHIVE HERO ========== */
.cat-hero { background: #fff; border-bottom: 1px solid var(--border); }
.cat-hero-inner { max-width: 1180px; margin: 0 auto; padding: 3.5rem 1.5rem 0; display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: end; }
.cat-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--g2); margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.cat-eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--g2); display: inline-block; }
.cat-hero-inner h1 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); color: var(--text); line-height: 1.18; font-weight: 700; margin-bottom: 1rem; }
.cat-hero-inner h1 em { color: var(--g2); font-style: italic; }
.cat-desc { font-size: .95rem; color: var(--mid); line-height: 1.75; font-weight: 300; max-width: 520px; margin-bottom: 2rem; }
.cat-stats { display: flex; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--border); }
.cat-stat .n { font-family: var(--serif); font-size: 1.5rem; color: var(--g1); font-weight: 700; line-height: 1; }
.cat-stat .l { font-size: .7rem; color: var(--muted); margin-top: .2rem; }
.cat-hero-aside { background: var(--g-pale); border-radius: 12px 12px 0 0; border: 1px solid var(--g-light); border-bottom: none; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.cat-aside-title { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g1); margin-bottom: .25rem; }
.cat-aside-link { display: flex; align-items: center; gap: .6rem; padding: .55rem 0; border-bottom: 1px solid var(--g-light); cursor: pointer; transition: color .15s; }
.cat-aside-link:last-child { border-bottom: none; }
.cat-aside-link:hover { color: var(--g1); }

/* ========== FILTER BAR ========== */
.filter-bar { background: #fff; border-bottom: 1px solid var(--border); padding: .9rem 1.5rem; position: sticky; top: 72px; z-index: 100; }
.filter-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-label { font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.filter-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
a.tag, span.tag, div.tag { display: inline-flex; align-items: center; padding: .32rem .8rem; border-radius: 20px; font-size: .73rem; font-weight: 500; border: 1px solid var(--border2); color: var(--mid); cursor: pointer; transition: all .15s; background: #fff; text-decoration: none; }
a.tag:hover, span.tag:hover, div.tag:hover, a.tag.active, span.tag.active, div.tag.active { background: var(--g2); color: #fff; border-color: var(--g2); }

/* ========== FEATURED LONG READ ========== */
.featured-longread { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 1fr 45%; margin-bottom: 2rem; cursor: pointer; transition: box-shadow .2s; }
.featured-longread:hover { box-shadow: var(--shadow-lg); }
.fl-body { padding: 2.5rem; }
.fl-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--g-pale); color: var(--g1); padding: .25rem .65rem; border-radius: 4px; border: 1px solid var(--g-light); margin-bottom: 1rem; }
.fl-body h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--text); line-height: 1.28; font-weight: 700; margin-bottom: .9rem; }
.fl-body p { font-size: .88rem; color: var(--mid); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; }
.fl-meta { display: flex; align-items: center; gap: 1rem; font-size: .73rem; color: var(--muted); flex-wrap: wrap; }
.fl-auth { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--mid); font-weight: 500; }
.fl-av { width: 32px; height: 32px; border-radius: 50%; background: var(--g-pale); border: 1.5px solid var(--g-light); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--g1); flex-shrink: 0; }
.fl-thumb { display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fl-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ========== PAGE HERO ========== */
.page-hdr { background: var(--g1); padding: 3.5rem 1.5rem 3rem; text-align: center; }
.page-hdr .eyebrow { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--g-light); font-weight: 600; margin-bottom: .6rem; }
.page-hdr h1 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); color: #fff; font-weight: 700; margin-bottom: .75rem; }
.page-hdr p { font-size: .92rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

/* ========== AUTHOR HERO ========== */
.author-hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 4rem 1.5rem; text-align: left; }
.author-hero-inner { max-width: 800px; margin: 0 auto; display: flex; align-items: center; gap: 2.5rem; }
.author-hero-av { width: 140px; height: 140px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.15); overflow: hidden; flex-shrink: 0; box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.author-hero-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-hero-cnt .eyebrow { margin-bottom: .5rem; }
.author-hero-cnt h1 { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.author-role { font-size: .95rem; font-weight: 600; color: var(--g1); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.author-bio { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }
.author-links { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.author-links a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); color: #fff; border-radius: 50%; font-size: 1rem; transition: all 0.2s; text-decoration: none; }
.author-links a:hover { background: var(--g1); transform: translateY(-2px); }
.author-stats { display: flex; align-items: center; gap: 1.5rem; }
.author-stats span { font-size: .85rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.1); padding: .4rem .8rem; border-radius: 6px; }

/* ========== ARCHIVE LIST ========== */
.trending-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.trend-main { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; }
.trend-main-img { height: 260px; background: var(--g-pale); display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; border-bottom: 1px solid var(--border); overflow: hidden; }
.trend-main-img img { width: 100%; height: 100%; object-fit: cover; }
.rank-badge { position: absolute; top: 1rem; left: 1rem; width: 36px; height: 36px; border-radius: 50%; background: var(--g1); color: #fff; font-family: var(--serif); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; z-index: 2; }
.hot-badge { position: absolute; top: 1rem; right: 1rem; background: #E53E3E; color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 3px; z-index: 2; }
.trend-main-body { padding: 1.5rem; }
.trend-main-body h2 { font-family: var(--serif); font-size: 1.3rem; color: var(--text); font-weight: 700; line-height: 1.3; margin-bottom: .65rem; }
.trend-main-body p { font-size: .83rem; color: var(--mid); line-height: 1.7; font-weight: 300; }
.trend-stack { display: flex; flex-direction: column; gap: 1rem; }
.trend-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; display: flex; overflow: hidden; cursor: pointer; transition: box-shadow .2s; }
.trend-item:hover { box-shadow: 0 4px 16px rgba(27,107,58,.08); }
.trend-rank { width: 44px; flex-shrink: 0; background: var(--g-pale); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--g1); }
.trend-body { padding: .85rem 1rem; flex: 1; }
.trend-cat { font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--g1); margin-bottom: .3rem; }
.trend-body h4 { font-family: var(--serif); font-size: .87rem; color: var(--text); line-height: 1.38; font-weight: 700; }
.trend-meta { font-size: .7rem; color: var(--muted); margin-top: .35rem; }
.period-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; }
.period-tab { border: 1px solid var(--border); border-radius: 6px; padding: .38rem .9rem; font-size: .78rem; font-weight: 500; color: var(--mid); background: #fff; cursor: pointer; font-family: var(--sans); }
.period-tab.active { background: var(--g1); color: #fff; border-color: var(--g1); }

/* ========== BREADCRUMB ========== */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: .75rem 1.5rem; }
.breadcrumb-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: .4rem; font-size: .72rem; color: var(--muted); }
.breadcrumb a { color: var(--g1); font-weight: 500; }
.breadcrumb .sep { color: var(--border2); }

/* ========== ARTICLES LAYOUT ========== */
.articles-layout { max-width: 1180px; margin: 0 auto; padding: 2.5rem 1.5rem; display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
.articles-sidebar { position: sticky; top: 100px; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.25rem; }
.sidebar-box h4 { font-family: var(--serif); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.sidebar-cat-link { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .82rem; color: var(--mid); transition: color .15s; }
.sidebar-cat-link:last-child { border-bottom: none; }
.sidebar-cat-link:hover { color: var(--g1); }
.sidebar-cat-link .cnt { font-size: .7rem; background: var(--g-pale); color: var(--g1); font-weight: 600; padding: .1rem .45rem; border-radius: 3px; }
.art-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.art-list-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: flex; cursor: pointer; transition: box-shadow .2s; }
.art-list-item:hover { box-shadow: var(--shadow-md); }
.ali-thumb { width: 100px; flex-shrink: 0; background: var(--g-pale); display: flex; align-items: center; justify-content: center; font-size: 2rem; overflow: hidden; }
.ali-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ali-body { padding: .9rem 1rem; display: flex; flex-direction: column; justify-content: center; }
.ali-cat { font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--g1); margin-bottom: .3rem; }
.ali-body h3 { font-family: var(--serif); font-size: .88rem; color: var(--text); line-height: 1.38; font-weight: 700; margin-bottom: .4rem; }
.ali-meta { font-size: .7rem; color: var(--muted); }

/* ========== ARTICLES PAGE HERO ========== */
.articles-hero { background: #fff; border-bottom: 1px solid var(--border); padding: 1.5rem 1.5rem; }
.articles-hero-inner { max-width: 1180px; margin: 0 auto; }
.articles-hero-inner .eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--g2); margin-bottom: .6rem; }
.articles-hero-inner h1 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.6rem); color: var(--text); font-weight: 700; margin-bottom: .6rem; }
.articles-hero-inner p { font-size: .9rem; color: var(--mid); line-height: 1.75; font-weight: 300; max-width: 520px; }
.search-bar { margin-top: 1.5rem; display: flex; gap: .75rem; max-width: 540px; }
.search-bar input { flex: 1; background: var(--off); border: 1px solid var(--border2); border-radius: 8px; padding: .72rem 1rem; font-family: var(--sans); font-size: .88rem; color: var(--text); outline: none; transition: border-color .15s; }
.search-bar input:focus { border-color: var(--g2); background: #fff; }
.search-bar button { background: var(--g2); color: #fff; border: none; border-radius: 8px; padding: .72rem 1.4rem; font-family: var(--sans); font-weight: 600; font-size: .86rem; cursor: pointer; }
.load-more { display: flex; justify-content: center; margin-top: 1.5rem; }
.btn-load { border: 1.5px solid var(--border2); border-radius: 8px; padding: .7rem 2rem; font-size: .84rem; font-weight: 600; color: var(--mid); background: #fff; cursor: pointer; transition: all .15s; font-family: var(--sans); }
.btn-load:hover { border-color: var(--g2); color: var(--g1); }

/* ========== SINGLE ARTICLE ========== */
.article-layout { max-width: 1180px; margin: 0 auto; padding: 2.5rem 1.5rem; display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.article-main {}
.article-cat { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g2); margin-bottom: .65rem; }
.article-main h1 { font-family: var(--serif); font-size: clamp(1.6rem,2.5vw,2.2rem); color: var(--text); font-weight: 700; line-height: 1.25; margin-bottom: 1rem; }
.article-byline { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.75rem; flex-wrap: wrap; }
.byline-author { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; transition: color .15s; }
.byline-author:hover .byline-name { color: var(--g1); }
.byline-av { width: 38px; height: 38px; border-radius: 50%; background: var(--g-pale); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--g1); border: 2px solid var(--g-light); overflow: hidden; }
.byline-av img { width: 100%; height: 100%; object-fit: cover; }
.byline-name { font-size: .8rem; font-weight: 600; color: var(--text); }
.byline-cred { font-size: .7rem; color: var(--muted); font-weight: 300; }
.byline-sep { width: 1px; height: 32px; background: var(--border); }
.byline-info { font-size: .75rem; color: var(--muted); }
.byline-info strong { color: var(--text); font-weight: 600; }
.medrev-bar { background: var(--g-pale); border: 1px solid var(--g-light); border-radius: 8px; padding: .85rem 1.1rem; margin-bottom: 1.75rem; display: flex; align-items: center; gap: .75rem; }
.medrev-bar p { font-size: .78rem; color: var(--mid); font-weight: 300; line-height: 1.5; }
.medrev-bar p strong { color: var(--g1); font-weight: 600; }
.medrev-bar a { color: var(--g1); }
.article-hero-img { border-radius: 12px; overflow: hidden; margin-bottom: 2rem; border: 1px solid var(--border); max-height: 420px; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-img.placeholder { height: 320px; background: var(--g-pale); display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.article-body { font-size: 1.05rem; color: var(--text); line-height: 1.85; font-weight: 300; word-break: break-word; overflow-wrap: break-word; }
.article-body img, .article-body video { max-width: 100%; height: auto; border-radius: 8px; }
.article-body figure, .article-body .wp-block-image { max-width: 100%; margin: 1.5rem 0; overflow: hidden; }
.article-body pre { overflow-x: auto; max-width: 100%; white-space: pre-wrap; word-wrap: break-word; }
.article-body blockquote { max-width: 100%; }
.article-body iframe, .article-body embed { max-width: 100%; }
.article-body table { width: 100% !important; max-width: 100%; overflow-x: auto; display: block; }
.article-body h2 { font-family: var(--serif); font-size: 1.35rem; color: var(--text); font-weight: 700; margin: 2rem 0 .75rem; line-height: 1.3; }
.article-body h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--text); font-weight: 700; margin: 1.5rem 0 .6rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.4rem; }
.article-body li { margin-bottom: .45rem; }
.article-body strong { font-weight: 600; color: var(--text); }
.callout { background: var(--g-pale); border-left: 4px solid var(--g2); border-radius: 0 8px 8px 0; padding: 1.1rem 1.25rem; margin: 1.5rem 0; font-size: .86rem; color: var(--mid); }
.callout strong { color: var(--g1); display: block; margin-bottom: .3rem; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.key-takeaways { background: var(--g1); border-radius: 12px; padding: 1.5rem 1.75rem; margin: 2rem 0; }
.key-takeaways h3 { font-family: var(--serif); font-size: 1rem; color: #fff; margin-bottom: .85rem; font-weight: 700; }
.key-takeaways ul { list-style: none; padding: 0; }
.key-takeaways li { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: .4rem; font-weight: 300; }
.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article-tag { background: var(--g-pale); color: var(--g1); font-size: .7rem; font-weight: 600; padding: .25rem .7rem; border-radius: 3px; border: 1px solid var(--g-light); }
.share-bar { display: flex; align-items: center; gap: .75rem; padding: 1.25rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; flex-wrap: wrap; }
.share-label { font-size: .75rem; font-weight: 600; color: var(--mid); }
.share-btn { border: 1px solid var(--border); border-radius: 6px; padding: .38rem .9rem; font-size: .75rem; font-weight: 500; color: var(--mid); background: #fff; cursor: pointer; font-family: var(--sans); }
.share-btn:hover { border-color: var(--g2); color: var(--g1); }
.related-articles { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--border); }

/* ========== SIDEBAR ========== */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.sidebar-card-hd { background: var(--g1); padding: .75rem 1.1rem; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.sidebar-card-body { padding: 1.1rem; }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: .6rem; }
.toc-list a { font-size: .88rem; color: var(--mid); transition: color .15s; text-decoration: none; display: block; line-height: 1.4; }
.toc-list a:hover { color: var(--g1); }

/* ========== MOBILE TOC ========== */
.mobile-toc { display: none; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin: 2rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.mobile-toc-hd { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
@media(max-width: 1024px) {
  .mobile-toc { display: block; }
  .sidebar-toc-card { display: none; }
}

/* ========== ARTICLE LAYOUT ========== */
.related-item { display: flex; gap: .65rem; padding: .6rem 0; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-ico { width: 44px; height: 44px; border-radius: 6px; background: var(--g-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; overflow: hidden; }
.related-ico img { width: 100%; height: 100%; object-fit: cover; }
.related-body h4 { font-family: var(--serif); font-size: .78rem; color: var(--text); font-weight: 700; line-height: 1.35; margin-bottom: .2rem; }
.related-body span { font-size: .68rem; color: var(--muted); }
.reviewer-card { padding: 1.1rem; text-align: center; }
.reviewer-card h4 { font-family: var(--serif); font-size: .9rem; color: var(--text); font-weight: 700; margin-bottom: .2rem; }
.reviewer-card .role { font-size: .7rem; color: var(--g1); font-weight: 600; margin-bottom: .5rem; }
.reviewer-card p { font-size: .75rem; color: var(--mid); line-height: 1.6; font-weight: 300; }
.nl-sidebar { background: var(--g1); }
.nl-sidebar .sidebar-card-body { text-align: center; padding: 1.4rem; }
.nl-sidebar input { width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 6px; padding: .55rem .8rem; color: #fff; font-family: var(--sans); font-size: .82rem; outline: none; margin-bottom: .65rem; }
.nl-sidebar input::placeholder { color: rgba(255,255,255,.6); opacity: 1; }
.nl-sidebar input::-moz-selection { background: rgba(255,255,255,0.3); color: #fff; }
.nl-sidebar input::selection { background: rgba(255,255,255,0.3); color: #fff; }
.nl-sidebar input:-webkit-autofill,
.nl-sidebar input:-webkit-autofill:hover, 
.nl-sidebar input:-webkit-autofill:focus, 
.nl-sidebar input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--g1) inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}
.nl-sidebar button { width: 100%; background: #fff; color: var(--g1) !important; border: none; border-radius: 6px; padding: .75rem; font-family: var(--sans); font-weight: 700; font-size: .86rem; cursor: pointer; display: block; transition: all 0.2s ease; }
.nl-sidebar button:hover { background: #F5F8F6; transform: translateY(-1px); }

/* ========== SEARCH PAGE ========== */
.search-results-wrap { max-width: 1180px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.no-results { text-align: center; padding: 4rem 1.5rem; }
.no-results h2 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 1rem; }

/* ========== FOOTER ========== */
.site-footer { background: #000000; padding: 3.5rem 1.5rem 1.5rem; }
.foot-inner { max-width: 1180px; margin: 0 auto; }
.foot-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.foot-logo img { height: 48px; width: auto; object-fit: contain; opacity: 1; margin-bottom: 1.2rem; display: block; }
.foot-about { font-size: .95rem; color: #fff; line-height: 1.6; max-width: 320px; margin-bottom: 1.5rem; font-weight: 500; }
.socials { display: flex; gap: .6rem; }
.soc-btn { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: none; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #000; cursor: pointer; transition: all .15s; text-decoration: none; }
.soc-btn:hover { background: #e0e0e0; transform: translateY(-2px); }
.foot-col h5 { font-size: 1.25rem; font-weight: 700; letter-spacing: normal; text-transform: none; color: #fff; margin-bottom: 1.2rem; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: .8rem; }
.foot-col a { font-size: .95rem; color: #fff; transition: color .15s; font-weight: 500; text-decoration: none; }
.foot-col a:hover { color: var(--g2); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.foot-copy { font-size: .72rem; color: rgba(255,255,255,.22); }
.med-pill { display: inline-flex; align-items: center; gap: .35rem; background: rgba(28,201,154,.12); border: 1px solid rgba(28,201,154,.22); border-radius: 4px; padding: .2rem .7rem; font-size: .65rem; color: var(--g4); font-weight: 600; }

/* ========== ADMIN PANEL CUSTOM STYLES ========== */
.hba-admin-panel { padding: 20px; }
.hba-admin-panel h2 { font-size: 1.4rem; margin-bottom: 1rem; color: #1A7A3C; }
.hba-settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.hba-settings-section { background: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; }
.hba-settings-section h3 { margin-bottom: 12px; font-size: 1rem; border-bottom: 2px solid #1A7A3C; padding-bottom: 8px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .5s ease both; }

/* Live Search Results Dropdown */
.live-search-results { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: .5rem; z-index: 100; display: none; overflow: hidden; border: 1px solid var(--border); }
.ls-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; text-decoration: none; border-bottom: 1px solid var(--border); transition: background .15s; }
.ls-item:last-child { border-bottom: none; }
.ls-item:hover { background: var(--off); }
.ls-thumb { width: 40px; height: 40px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--off); }
.ls-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ls-text h4 { font-size: .85rem; font-weight: 600; color: var(--text); margin: 0; line-height: 1.3; }
.ls-empty { padding: 1rem; font-size: .9rem; color: var(--mid); text-align: center; }

/* ========== RESPONSIVE ========== */
@media(max-width: 1024px) {
  .home-hero-wrap { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-right { height: auto; padding-bottom: 4rem; }
  .home-hero-left { padding: 3rem 2rem 1rem; }
  .cat-hero-inner { grid-template-columns: 1fr; }
  .cat-hero-aside { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .articles-layout { grid-template-columns: 1fr; }
  .articles-sidebar { position: static; }
  .nav-menu-wrap { display: none; }
  .hamburger { display: flex; }
  .nav-menu-wrap.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1.5rem; z-index: 300; }
  .nav-links { flex-direction: column; width: 100%; text-align: center; gap: 1rem; }
  .nav-right { width: 100%; justify-content: center; }
}
@media(max-width: 768px) {
  .art-grid { grid-template-columns: 1fr 1fr; }
  .trending-hero-grid { grid-template-columns: 1fr; }
  .featured-longread { grid-template-columns: 1fr; }
  .fl-thumb { height: 220px; }
  .nav-wrap { height: 60px; }
  .site-footer { padding: 2.5rem 1.5rem 1.5rem; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
  .foot-top > div:first-child { grid-column: 1 / -1; margin-bottom: 0.5rem; }
  .foot-col h5 { font-size: 0.95rem; margin-bottom: 0.5rem; }
  .foot-col ul { margin: 0; padding: 0; }
  .foot-col li { margin-bottom: 0.35rem; }
  .foot-col a { font-size: 0.8rem; }
  .foot-about { font-size: 0.8rem; margin-bottom: 0.8rem; line-height: 1.4; }
  .soc-btn { width: 30px; height: 30px; }
  .foot-logo img { height: 36px; margin-bottom: 0.5rem; }
  .expert-strip { padding: 1.5rem; }
  .expert-strip-inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .trust-metrics-inner { gap: 2rem; }
  .topic-card { flex: 0 0 calc(50% - .5rem); }
  .article-layout { padding: 1.5rem 1rem; gap: 2rem; }
  .home-hero-left { text-align: center; align-items: center; }
  .home-hero-left p { text-align: center; margin: 0 auto 1.5rem auto; }
  .home-eyebrow { text-align: center; }
  .home-hero-left h1 { font-size: 1.8rem; line-height: 1.25; text-align: center; }
  .article-main h1 { font-size: 1.5rem; line-height: 1.25; }
  .articles-hero-inner h1, .cat-hero-inner h1, .page-hdr h1 { font-size: 1.7rem !important; }
  .medrev-bar { flex-direction: column; align-items: flex-start; }
  .home-medrev-card { bottom: 0; left: 1rem; right: 1rem; max-width: none; flex-direction: column; text-align: center; padding: 1.5rem; }
  .home-trust-row { justify-content: center; }
  .home-ctas { justify-content: center; }
  .author-hero-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .author-hero { padding: 2rem 1.5rem; }
  .author-hero-av { width: 100px; height: 100px; border-width: 3px; }
  .author-hero-cnt h1 { font-size: 1.6rem; margin-bottom: 0.2rem; }
  .author-role { font-size: 0.85rem; margin-bottom: 0.8rem; }
  .author-bio { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
  .author-links { justify-content: center; margin-bottom: 1rem; }
  .author-stats { justify-content: center; }
  .articles-hero { padding: 1.5rem 1.5rem; }
  #page-nav { bottom: 20px; right: 10px; max-width: 150px; padding: 0.5rem; }
  #page-nav summary { font-size: 0.65rem; }
}
@media(max-width: 480px) {
  .art-grid { grid-template-columns: 1fr; }
  .home-hero-left h1 { font-size: 1.8rem; }
  .home-ctas { flex-direction: column; width: 100%; gap: 1rem; }
  .home-ctas a { width: 100%; text-align: center; }
  .home-trust-row { justify-content: center; gap: 1rem; }
  .htrust-item { max-width: 100px; }
  .nl-form { flex-direction: column; }
  .period-tabs { flex-wrap: wrap; }
}

/* ===================== BROWSE PAGES ===================== */
#page-nav {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  background: var(--text); border-radius: 12px; padding: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 260px;
}
#page-nav summary {
  color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; padding: 0.2rem;
  display: flex; align-items: center; gap: 0.5rem;
  list-style: none; /* Hide default arrow in some browsers */
}
#page-nav summary::-webkit-details-marker {
  display: none;
}
#page-nav summary::before { content: '☰'; font-size: 1rem; }
#page-nav-list {
  margin-top: 0.6rem; display: flex; flex-direction: column; gap: 0.25rem;
  max-height: 60vh; overflow-y: auto;
}
.pnav-section {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g4); padding: 0.4rem 0.3rem 0.15rem;
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0.3rem;
}
.pnav-section:first-child { border-top: none; margin-top: 0; }
.pnav-btn {
  background: transparent; border: none; color: rgba(255,255,255,0.65);
  font-size: 0.73rem; text-align: left; padding: 0.32rem 0.5rem; border-radius: 6px;
  width: 100%; transition: all 0.15s; font-family: var(--sans); cursor: pointer;
  display: block; text-decoration: none;
}
.pnav-btn:hover, .pnav-btn.active { background: rgba(255,255,255,0.08); color: #fff; }
.pnav-btn.active { color: var(--g4); font-weight: 600; }

/* ========== ABOUT US RESPONSIVE ========== */
.about-hero { padding: 4rem 1.5rem; text-align: center; background: #fff; border-bottom: 1px solid var(--border); }
.about-hero-inner { max-width: 800px; margin: 0 auto; }
.about-tag { font-size: 0.8rem; font-weight: 700; color: var(--g1); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.about-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--text); line-height: 1.2; margin-bottom: 1.5rem; font-weight: 700; }
.about-hero p { font-size: 1.1rem; color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
.about-hero-ctas { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-white { background: var(--g1); color: #fff; padding: 0.8rem 1.5rem; border-radius: 6px; text-decoration: none; font-weight: 600; }
.btn-outline-white { background: #fff; color: var(--g1); border: 2px solid var(--g1); padding: 0.8rem 1.5rem; border-radius: 6px; text-decoration: none; font-weight: 600; }

.mission-strip { padding: 4rem 1.5rem; background: var(--off); }
.mission-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.mission-label { font-size: 0.8rem; font-weight: 700; color: var(--g2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.mission-inner h2 { font-family: var(--serif); font-size: 2.2rem; color: var(--text); line-height: 1.2; margin-bottom: 1.5rem; font-weight: 700; }
.mission-inner p { font-size: 1rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.5rem; }
.mission-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pillar { background: #fff; padding: 1.5rem; border-radius: 8px; border: 1px solid var(--border); }
.pillar-ico { font-size: 1.8rem; margin-bottom: 1rem; }
.pillar h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; margin: 0; }

.values-section { padding: 4rem 1.5rem; background: #fff; }
.values-inner { max-width: 1180px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card { background: var(--off); padding: 2rem; border-radius: 8px; text-align: center; }
.value-ico { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 1rem; font-weight: 700; }
.value-card p { font-size: 0.95rem; color: var(--mid); line-height: 1.6; }

.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 3rem; color: var(--g1); font-weight: 700; line-height: 1; }
.stat-lbl { font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; font-weight: 500; }

@media(max-width: 1024px) {
  .mission-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
  .about-hero { padding: 3rem 1.5rem; }
  .mission-pillars { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-num { font-size: 2.5rem; }
}

/* ==========================================================================
   TEAM PAGE PROFESSIONAL STYLES
   ========================================================================== */
.team-hero {
  background: linear-gradient(135deg, var(--g1) 0%, #074030 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.team-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.team-hero-label {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.team-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.team-grid-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.team-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.team-dynamic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.team-member-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.team-member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-photo img {
  transform: scale(1.05);
}

.team-member-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-member-role {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--g-pale);
  color: var(--g1);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.team-member-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-member-cred {
  font-size: 0.8rem;
  color: var(--g3);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member-bio {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.team-member-bio p {
  margin-bottom: 0.75rem;
}

.team-member-bio p:last-child {
  margin-bottom: 0;
}

.team-member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.team-tag {
  background: var(--g-light);
  color: var(--g2);
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.team-member-card .view-profile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem;
  background: var(--g-pale);
  color: var(--g1);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: background 0.3s ease, color 0.3s ease;
}

.team-member-card .view-profile-btn:hover {
  background: var(--g1);
  color: #fff;
}

.team-member-card .view-profile-btn svg {
  width: 18px;
  height: 18px;
}

/* Editorial Standards Box */
.editorial-standards-box {
  background: linear-gradient(135deg, var(--g-pale), #fff);
  border: 1px solid var(--g-light);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.standards-col {
  text-align: center;
}

.standards-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--g-pale);
  border: 2px solid var(--g-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.standards-col h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.standards-col p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}

.standards-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .team-dynamic-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-standards-box { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
}

@media (max-width: 600px) {
  .team-dynamic-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HEALTH TOPICS ENHANCED UI
   ========================================================================== */
.topics-hero-enhanced {
  background: linear-gradient(145deg, #074030 0%, var(--g1) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.topics-hero-enhanced::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  animation: rotate 60s linear infinite;
  pointer-events: none;
}

@keyframes rotate { 100% { transform: rotate(360deg); } }

.topics-hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.topics-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.topics-hero-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.topics-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.topics-search-form {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.topics-search-form:focus-within {
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.topics-search-form svg {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--mid);
}

.topics-search-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 1rem 1rem 1rem 3.5rem;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  border-radius: 50px;
}

.topics-search-form button {
  background: var(--g1);
  color: #fff;
  border: none;
  padding: 0 2rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.topics-search-form button:hover {
  background: #074030;
}

/* Directory Layout */
.az-jump-container {
  position: sticky;
  top: 80px;
  z-index: 10;
  margin-bottom: 3rem;
  padding: 1rem 0;
  background: var(--off); /* Match section bg */
}

.az-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px);
  border-radius: 100px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 25px rgba(0,0,0,0.04);
  max-width: fit-content;
  margin: 0 auto;
}

.az-jump-links a,
.az-jump-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.az-jump-links a {
  background: transparent;
  color: var(--text);
}

.az-jump-links a:hover {
  background: var(--g1);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(24, 134, 138, 0.3);
}

.az-jump-links span.disabled {
  background: transparent;
  color: #ccc;
  cursor: not-allowed;
  font-weight: 400;
}

.topics-az-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.topic-letter-group {
  background: transparent;
}

.letter-heading-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.letter-heading-wrap::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--border);
}

.letter-heading {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--g1);
  line-height: 1;
}

.topic-list-enhanced {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.topic-list-enhanced li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.topic-list-enhanced li a:hover {
  transform: translateX(5px);
  border-color: var(--g-light);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  background: #fdfdfd;
}

.topic-list-enhanced .topic-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s ease;
}

.topic-list-enhanced li a:hover .topic-name {
  color: var(--g1);
}

.topic-list-enhanced .topic-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--off);
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
}

.topic-list-enhanced .topic-count svg {
  width: 14px;
  height: 14px;
  color: var(--g1);
  transition: transform 0.3s ease;
}

.topic-list-enhanced li a:hover .topic-count svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .topics-az-container { grid-template-columns: repeat(2, 1fr); }
  .az-jump-links { border-radius: 20px; padding: 1rem; }
}

@media (max-width: 640px) {
  .topics-hero-enhanced { padding: 4rem 1rem; }
  .topics-search-form { flex-direction: column; border-radius: 16px; padding: 1rem; gap: 1rem; background: rgba(255,255,255,0.95); }
  .topics-search-form input { padding: 0.5rem 1rem 0.5rem 2.5rem; border-radius: 8px; }
  .topics-search-form svg { top: 1.5rem; left: 1.5rem; }
  .topics-search-form button { padding: 0.8rem; border-radius: 8px; width: 100%; }
  
  .topics-az-container { grid-template-columns: 1fr; }
  .az-jump-links a, .az-jump-links span { width: 32px; height: 32px; font-size: 0.85rem; }
  .az-jump-container { top: 60px; }
}

/* ==========================================================================
   AUTHOR ARCHIVE ENHANCED UI
   ========================================================================== */
.author-hero-enhanced {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.author-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.author-hero-avatar {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 5px solid var(--g-pale);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
}

.author-hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-hero-text {
  flex-grow: 1;
}

.author-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--g1);
  background: var(--g-pale);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.author-name {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.author-role {
  font-size: 1.1rem;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.author-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 800px;
}

.author-meta-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.author-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--g1);
}

.author-stats svg {
  width: 20px;
  height: 20px;
}

.author-social-links {
  display: flex;
  gap: 1rem;
}

.author-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--off);
  color: var(--text);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.author-social-links a:hover {
  background: var(--g1);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .author-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .author-hero-avatar {
    width: 180px;
    height: 180px;
  }
  .author-meta-footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}

