/*
Theme Name:  Face2News
Description: Modern editorial news theme — multilingual EN/HI/PA
Version:     2.0.0
*/

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --red:          #c0392b;
  --red-dark:     #a93226;
  --red-light:    #e74c3c;
  --red-subtle:   rgba(192,57,43,.08);
  --gold:         #d4a017;

  /* Ink */
  --ink:          #0f1117;
  --ink-2:        #1e2535;
  --ink-3:        #3d4a5c;

  /* UI */
  --muted:        #6b7280;
  --line:         #e8edf2;
  --line-2:       #f0f3f7;
  --bg:           #f5f7fa;
  --white:        #ffffff;
  --surface:      #ffffff;
  --surface-2:    #f9fafb;

  /* Typography */
  --font-head:    'Fraunces', Georgia, serif;
  --font-ui:      'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Typography scale — overridden by Customizer <style> in <head> */
  --f2n-font-size:          16px;
  --f2n-font-article:       17px;
  --f2n-font-card-title:    16px;
  --f2n-line-height:        1.85;
  --f2n-font-sm:            16px;
  --f2n-font-xs:            13px;
  --f2n-font-nav:           16px;
  --f2n-font-meta:          13px;
  --f2n-font-card-sm-title: 16px;

  /* Spacing */
  --radius:       8px;
  --radius-sm:    5px;
  --radius-lg:    12px;

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,.06);
  --shadow-s:     0 2px 8px rgba(0,0,0,.08);
  --shadow-m:     0 4px 16px rgba(0,0,0,.10);
  --shadow-l:     0 8px 32px rgba(0,0,0,.13);
  --shadow-hover: 0 10px 36px rgba(0,0,0,.14);

  /* Layout */
  --nav-h:        58px;
  --ticker-h:     36px;
  --container:    1280px;

  /* Transitions */
  --ease:         cubic-bezier(.25,.46,.45,.94);
}

/* ═══════════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  font-size: var(--f2n-font-size, 16px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 3px; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.22;
  color: var(--ink);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL UTILITIES
═══════════════════════════════════════════════════════════════ */
.f2n-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.f2n-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.f2n-divider { border: none; border-top: 1px solid var(--line); margin: 28px 0; }
.f2n-label {
  display: inline-flex; align-items: center;
  background: var(--red); color: #fff;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════════════ */
.f2n-topbar {
  background: var(--ink);
  height: 36px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.f2n-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.f2n-topbar__date {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: rgba(255,255,255,.4);
  letter-spacing: .03em;
}
.f2n-topbar__right { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.f2n-lang-switcher { display: flex; gap: 2px; }
.f2n-lang-switcher a {
  padding: 3px 9px; border-radius: 3px;
  font-family: var(--font-ui); font-weight: 700; font-size: var(--f2n-font-xs);
  letter-spacing: .07em; color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.45);
  transition: all .18s var(--ease);
}
.f2n-lang-switcher a.active,
.f2n-lang-switcher a:hover {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* Social icons */
.f2n-social { display: flex; gap: 12px; }
.f2n-social a {
  color: rgba(255,255,255,.35); font-size: 14px;
  display: flex; align-items: center;
  transition: color .18s var(--ease);
}
.f2n-social a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.f2n-header {
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 200;
  transition: box-shadow .25s var(--ease);
}
.f2n-header--sticky {
  position: sticky; top: 0;
}
.f2n-header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  border-bottom-color: transparent;
}
.f2n-header__inner {
  display: flex; align-items: center;
  height: 100%; gap: 28px;
}

/* Logo */
.f2n-logo {
  display: flex; align-items: center; flex-shrink: 0;
  text-decoration: none;
}
.f2n-logo__img { height: 36px; width: auto; }
.f2n-logo__text {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 900;
  color: var(--ink); letter-spacing: -.02em;
  line-height: 1;
}
.f2n-logo__text span {
  color: var(--red);
  background: var(--red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav */
.f2n-nav { display: flex; align-items: center; gap: 0; flex: 1; }
.f2n-nav__item { position: relative; }
.f2n-nav__link {
  display: block; padding: 0 13px;
  font-family: var(--font-ui); font-size: var(--f2n-font-nav, 13px); font-weight: 600;
  color: var(--ink-3); height: var(--nav-h); line-height: var(--nav-h);
  white-space: nowrap; transition: color .18s var(--ease);
  position: relative;
}
.f2n-nav__link::after {
  content: ''; position: absolute;
  bottom: 0; left: 13px; right: 13px; height: 2px;
  background: var(--red); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform .22s var(--ease);
}
.f2n-nav__link:hover,
.f2n-nav__item.active > .f2n-nav__link { color: var(--ink); }
.f2n-nav__link:hover::after,
.f2n-nav__item.active > .f2n-nav__link::after { transform: scaleX(1); }

/* Dropdown */
.f2n-nav__dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  min-width: 200px; z-index: 300;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s var(--ease), visibility .2s, transform .2s var(--ease);
}
.f2n-nav__item:hover .f2n-nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.f2n-nav__dropdown a {
  display: block; padding: 10px 16px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--ink-3);
  border-bottom: 1px solid var(--line-2);
  transition: background .12s, color .12s, padding-left .15s;
}
.f2n-nav__dropdown a:last-child { border-bottom: none; }
.f2n-nav__dropdown a:hover { background: var(--red-subtle); color: var(--red); padding-left: 22px; }

/* Hamburger */
.f2n-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.f2n-hamburger:hover { background: var(--bg); }
.f2n-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}

/* ═══════════════════════════════════════════════════════════════
   BREAKING NEWS TICKER
═══════════════════════════════════════════════════════════════ */
.f2n-ticker {
  height: var(--ticker-h);
  background: var(--red);
  overflow: hidden;
}
.f2n-ticker__label {
  flex-shrink: 0;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  padding: 0 14px 0 0; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.f2n-ticker__label::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; opacity: .7;
  animation: f2n-ticker-blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes f2n-ticker-blink { 0%,100%{opacity:.7} 50%{opacity:.2} }
.f2n-ticker__label::after {
  content: '';
  width: 1px; height: 18px;
  background: rgba(255,255,255,.3); margin-left: 8px;
}
.f2n-ticker__track { flex: 1; overflow: hidden; position: relative; }
.f2n-ticker__items {
  display: flex; align-items: center; gap: 0;
  animation: f2n-ticker-scroll linear infinite;
  width: max-content;
}
.f2n-ticker__items:hover { animation-play-state: paused; }
@keyframes f2n-ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.f2n-ticker__item {
  display: inline-flex; align-items: center;
  padding: 0 32px 0 0;
  font-family: var(--font-ui); font-size: var(--f2n-font-nav, 13px); font-weight: 500;
  color: rgba(255,255,255,.9); white-space: nowrap;
  transition: color .2s;
}
.f2n-ticker__item::after {
  content: '•'; margin-left: 32px;
  color: rgba(255,255,255,.35); font-size: var(--f2n-font-xs);
}
.f2n-ticker__item:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════════════════════════════ */
.f2n-mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(15,17,23,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column; padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  display: flex;
}
.f2n-mobile-nav[hidden] { display: none; }
.f2n-mobile-nav.open { transform: translateX(0); display: flex; }
.f2n-mobile-nav__close {
  align-self: flex-end; color: rgba(255,255,255,.6);
  padding: 20px 20px 12px;
  transition: color .15s;
}
.f2n-mobile-nav__close:hover { color: #fff; }
.f2n-mobile-nav a {
  color: rgba(255,255,255,.75);
  font-family: var(--font-ui); font-size: 17px; font-weight: 600;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: block; transition: color .15s, background .15s;
}
.f2n-mobile-nav a.active,
.f2n-mobile-nav a:hover { color: #fff; background: rgba(255,255,255,.04); }
.f2n-mobile-nav__lang {
  display: flex; gap: 8px; padding: 20px 24px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.08);
}
.f2n-mobile-nav__lang a {
  font-size: var(--f2n-font-xs); padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; color: rgba(255,255,255,.5);
}
.f2n-mobile-nav__lang a.active {
  background: var(--red); border-color: var(--red); color: #fff;
}
.f2n-mobile-nav__social {
  display: flex; gap: 16px; padding: 0 24px 28px;
}
.f2n-mobile-nav__social a { color: rgba(255,255,255,.4); padding: 0; border: none; font-size: 18px; }
.f2n-mobile-nav__social a:hover { color: var(--red); background: none; }

/* ═══════════════════════════════════════════════════════════════
   MAIN LAYOUT
═══════════════════════════════════════════════════════════════ */
.f2n-main { padding: 36px 0 64px; }
.f2n-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEAD
═══════════════════════════════════════════════════════════════ */
.f2n-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 5px;
  border-bottom: 2px solid var(--line);
  position: relative;
}
.f2n-section-head::before {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 44px; height: 2px;
  background: var(--red); border-radius: 2px;
}
.f2n-section-head h2 {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); display: flex; align-items: center; gap: 8px;
}
.f2n-section-head a {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 600;
  color: var(--muted); white-space: nowrap;
  border: 1px solid var(--line); border-radius: 20px; padding: 3px 12px;
  transition: color .15s, border-color .15s, background .15s;
}
.f2n-section-head a:hover {
  color: var(--red); border-color: rgba(192,57,43,.3); background: var(--red-subtle);
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY SECTIONS (homepage)
═══════════════════════════════════════════════════════════════ */
.f2n-cat-section { margin-bottom: 52px; }

/* Grid: big card (left) + list panel (right) */
.f2n-cat-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: stretch;           /* both columns same height */
}
.f2n-cat-grid > * { min-width: 0; }

/* ── MAIN SLOT: the big featured card ──────────────────────── */
.f2n-cat-grid__main {
  display: flex;
  flex-direction: column;
}

/* The card itself fills the full column height */
.f2n-cat-grid__main .f2n-card-lg {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}

/* Image: fixed tall height — no more squashed aspect-ratio */
.f2n-cat-grid__main .f2n-card-lg__img {
  height: 260px;
  aspect-ratio: unset;
  flex-shrink: 0;
}

/* Bigger headline in main slot */
.f2n-cat-grid__main .f2n-card-lg__title {
  font-size: calc(var(--f2n-font-card-title, 16px) + 3px);
  -webkit-line-clamp: 3;
  line-height: 1.28;
  letter-spacing: -.015em;
}

/* Excerpt visible only here */
.f2n-cat-grid__main .f2n-card-lg__excerpt {
  font-family: var(--font-ui); font-size: var(--f2n-font-sm, 13px); line-height: 1.65;
  color: var(--ink-3);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-top: -2px;
}

/* Body padding more generous in main slot */
.f2n-cat-grid__main .f2n-card-lg__body { padding: 20px 22px 22px; gap: 10px; }

/* ── LIST SLOT: stacked small cards ────────────────────────── */
.f2n-cat-grid__list {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════════ */

/* ── Large card (featured) ─────────────────────────────────── */
.f2n-card-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease);
}
.f2n-card-lg:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.f2n-card-lg__img {
  display: block; aspect-ratio: 16/10; flex-shrink: 0;
  overflow: hidden; background: var(--bg);
}
.f2n-card-lg__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.f2n-card-lg:hover .f2n-card-lg__img img { transform: scale(1.06); }

.f2n-card-lg__body {
  padding: 16px 18px 18px;
  flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.f2n-card-lg__label {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--red);
  border: 1px solid rgba(192,57,43,.22); background: rgba(192,57,43,.06);
  padding: 2px 10px; border-radius: 20px; align-self: flex-start;
}
.f2n-card-lg__title {
  font-family: var(--font-head); font-size: var(--f2n-font-card-title, 16px); font-weight: 700;
  line-height: 1.32; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.f2n-card-lg__title:hover { color: var(--red); }
.f2n-card-lg__meta {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--muted);
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line-2);
}
.f2n-card-lg__meta svg { opacity: .5; flex-shrink: 0; }

/* ── Small card (list) ─────────────────────────────────────── */
.f2n-card-sm {
  display: flex; 
  align-items: center; 
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-2);
  text-decoration: none;
  transition: background .15s var(--ease);
  flex: 1;                        /* equal height distribution */
  min-height: 0;
}
.f2n-card-sm:last-child { border-bottom: none; }
.f2n-card-sm:hover { background: var(--red-subtle); }

.f2n-card-sm__img {
  width: 80px; height: 62px; flex-shrink: 0;
  border-radius: var(--radius-sm); overflow: hidden; background: var(--bg);
}
.f2n-card-sm__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.f2n-card-sm:hover .f2n-card-sm__img img { transform: scale(1.07); }

.f2n-card-sm__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.f2n-card-sm__label {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--red);
}
.f2n-card-sm__title {
  font-family: var(--font-ui); font-size: var(--f2n-font-card-sm-title, 13px); font-weight: 600;
  line-height: 1.42; color: var(--ink-2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.f2n-card-sm:hover .f2n-card-sm__title { color: var(--red); }
.f2n-card-sm__meta { font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--muted); margin-top: auto; }

/* No image placeholder */
.f2n-no-img {
  width: 100%; height: 100%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.f2n-no-img .f2n-logo__text { font-size: 18px; opacity: .3; }

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR & WIDGETS
═══════════════════════════════════════════════════════════════ */
.f2n-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  display: flex; flex-direction: column; gap: 20px;
}
.f2n-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.f2n-widget__head {
  padding: 12px 16px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs, 10px); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 7px;
  border-bottom: 2px solid var(--red);
  background: var(--surface-2);
}
.f2n-widget__head svg { opacity: .6; flex-shrink: 0; }
.f2n-widget__body { padding: 0; }

/* Popular list */
.f2n-popular-list { display: flex; flex-direction: column; }
.f2n-popular-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-2);
  text-decoration: none;
  transition: background .12s var(--ease);
}
.f2n-popular-item:last-child { border-bottom: none; }
.f2n-popular-item:hover { background: var(--red-subtle); }
.f2n-popular-item__num {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  color: var(--line); flex-shrink: 0; line-height: 1;
  width: 28px; padding-top: 1px;
  transition: color .15s;
}
.f2n-popular-item:hover .f2n-popular-item__num { color: var(--red); }
.f2n-popular-item__title {
  font-family: var(--font-ui); font-size: var(--f2n-font-sm, 12.5px); line-height: 1.45;
  color: var(--ink-2); font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .12s;
}
.f2n-popular-item:hover .f2n-popular-item__title { color: var(--red); }

/* Category list widget */
.f2n-cat-list { display: flex; flex-direction: column; }
.f2n-cat-list__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line-2);
  text-decoration: none;
  font-family: var(--font-ui); font-size: var(--f2n-font-nav, 13px); color: var(--ink-3);
  border-left: 2px solid transparent;
  transition: background .12s var(--ease), border-color .12s, color .12s, padding-left .18s;
}
.f2n-cat-list__item:last-child { border-bottom: none; }
.f2n-cat-list__item:hover {
  background: var(--red-subtle); color: var(--red);
  border-left-color: var(--red); padding-left: 18px;
}
.f2n-cat-list__item--active {
  background: var(--red-subtle); color: var(--red); font-weight: 600;
  border-left-color: var(--red); padding-left: 18px;
}
.f2n-cat-list__label { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.f2n-cat-list__count {
  background: var(--bg); border: 1px solid var(--line);
  color: var(--muted); font-size: var(--f2n-font-xs); font-weight: 600;
  padding: 1px 7px; border-radius: 10px; margin-left: 8px; flex-shrink: 0;
  transition: background .12s, color .12s, border-color .12s;
}
.f2n-cat-list__item:hover .f2n-cat-list__count,
.f2n-cat-list__item--active .f2n-cat-list__count {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════════ */
.f2n-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs, 12px); color: var(--muted);
  margin-bottom: 20px; flex-wrap: wrap;
}
.f2n-breadcrumb a { color: var(--muted); transition: color .15s; }
.f2n-breadcrumb a:hover { color: var(--red); }
.f2n-breadcrumb__sep { color: var(--line); font-size: 14px; }
.f2n-breadcrumb__current {
  color: var(--ink-3); font-weight: 500;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 260px;
}
.f2n-breadcrumb--light a             { color: rgba(255,255,255,.5); }
.f2n-breadcrumb--light a:hover       { color: #fff; }
.f2n-breadcrumb--light .f2n-breadcrumb__sep     { color: rgba(255,255,255,.2); }
.f2n-breadcrumb--light .f2n-breadcrumb__current { color: rgba(255,255,255,.7); font-weight: 400; }

/* ═══════════════════════════════════════════════════════════════
   ARCHIVE / CATEGORY PAGE
═══════════════════════════════════════════════════════════════ */
.f2n-archive { padding-bottom: 64px; }
.f2n-archive__banner {
  background: #0d1117;
  padding: 0; margin-bottom: 0;
  overflow: hidden; position: relative;
}
.f2n-archive__banner::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
}
.f2n-archive__banner::before {
  content: ''; position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--red); opacity: .06; z-index: 1;
}
.f2n-archive__banner-inner {
  position: relative; z-index: 2;
  padding: 28px 20px 26px;
  max-width: var(--container); margin: 0 auto;
}
.f2n-archive__title {
  font-family: var(--font-head);
  font-size: clamp(calc(var(--f2n-font-card-title, 16px) + 8px), 3vw, 38px);
  font-weight: 700; color: #fff; line-height: 1.2;
}
.f2n-archive__count {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs);
  color: rgba(255,255,255,.4); margin-top: 8px;
}
.f2n-archive__count::before {
  content: ''; display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--red); opacity: .8;
}
.f2n-archive .f2n-layout { padding-top: 36px; }
.f2n-archive__main { min-width: 0; }
.f2n-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.f2n-archive__grid > * { min-width: 0; }

/* Featured first post */
.f2n-acard--featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1.5fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow .22s var(--ease), transform .22s;
}
.f2n-acard--featured:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.f2n-acard--featured .f2n-acard__img-wrap { display: block; overflow: hidden; min-height: 240px; background: var(--bg); }
.f2n-acard--featured .f2n-acard__body { padding: 28px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.f2n-acard--featured .f2n-acard__title { font-size: clamp(18px, 2vw, 24px); -webkit-line-clamp: 3; }

/* Regular archive card */
.f2n-acard {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .22s var(--ease), transform .22s;
}
.f2n-acard:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.f2n-acard__img-wrap { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--bg); }
.f2n-acard__img-wrap img { width:100%; height:100%; object-fit:contain; transition: transform .5s var(--ease); }
.f2n-acard:hover .f2n-acard__img-wrap img,
.f2n-acard--featured:hover .f2n-acard__img-wrap img { transform: scale(1.05); }
.f2n-acard__no-img { width:100%; height:100%; min-height:160px; background: var(--bg); }
.f2n-acard__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.f2n-acard__cat {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(192,57,43,.2);
  background: rgba(192,57,43,.06);
  padding: 2px 9px; border-radius: 20px; align-self: flex-start;
}
.f2n-acard__title {
  font-family: var(--font-head); font-weight: 700;
  line-height: 1.32; color: var(--ink);
}
.f2n-acard__title a { color: inherit; transition: color .15s; }
.f2n-acard__title a:hover { color: var(--red); }
.f2n-acard:not(.f2n-acard--featured) .f2n-acard__title {
  font-size: var(--f2n-font-size);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.f2n-acard__excerpt {
  font-family: var(--font-ui); font-size: var(--f2n-font-sm, 13.5px); line-height: 1.65;
  color: var(--ink-3);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.f2n-acard__meta {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--muted);
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line-2);
}
.f2n-acard__meta svg { opacity: .55; flex-shrink: 0; }
.f2n-acard__read-more {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: auto; color: var(--red); font-weight: 600; font-size: var(--f2n-font-xs);
  transition: gap .15s var(--ease);
}
.f2n-acard__read-more:hover { gap: 7px; }
.f2n-archive__empty {
  text-align: center; padding: 64px 20px;
  color: var(--muted); font-family: var(--font-ui);
}
.f2n-archive__empty svg { margin: 0 auto 16px; opacity: .2; }

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════════ */
.f2n-pagination {
  display: flex; align-items: center; gap: 5px;
  justify-content: center; flex-wrap: wrap;
  font-family: var(--font-ui); margin-top: 8px;
}
.f2n-page-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  min-width: 38px; height: 38px; padding: 0 12px;
  border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--white); color: var(--ink-2);
  font-size: var(--f2n-font-xs); font-weight: 600; text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, transform .12s;
}
.f2n-page-btn:hover { background: var(--bg); border-color: #c0c9d6; color: var(--ink); transform: translateY(-1px); }
.f2n-page-btn--active { background: var(--red); border-color: var(--red); color: #fff !important; pointer-events: none; }
.f2n-page-btn--prev, .f2n-page-btn--next { padding: 0 14px; font-size: var(--f2n-font-xs); }
.f2n-page-btn--dots { border: none; background: transparent; color: var(--muted); cursor: default; pointer-events: none; }
.f2n-pagination a, .f2n-pagination span { /* legacy compat */ }
.f2n-pagination .current {
  background: var(--red); border: 1px solid var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--f2n-font-xs);
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE ARTICLE
═══════════════════════════════════════════════════════════════ */
.f2n-single { padding: 32px 0 56px; }
.f2n-single__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px; align-items: start;
}

/* Reading progress bar */
.f2n-reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--red); z-index: 9999;
  transition: width .1s linear;
}

.f2n-article__header { margin-bottom: 24px; }
.f2n-article__header-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.f2n-article__cat {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--red); color: #fff;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-sm);
}
.f2n-article__trending {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 600;
  color: var(--red); border: 1px solid rgba(192,57,43,.3);
  padding: 3px 10px; border-radius: 20px;
}
.f2n-inline-lang {
  display: flex; gap: 4px; margin-left: auto;
}
.f2n-inline-lang__btn {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 700;
  letter-spacing: .07em;
  padding: 3px 10px; border-radius: 3px;
  border: 1px solid var(--line); color: var(--muted);
  transition: all .15s;
}
.f2n-inline-lang__btn--active,
.f2n-inline-lang__btn:hover {
  background: var(--red); border-color: var(--red); color: #fff;
}
.f2n-article__title {
  font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18; font-weight: 700; color: var(--ink);
  letter-spacing: -.02em; margin-bottom: 18px;
}
.f2n-article__meta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--muted);
  padding: 14px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  margin-bottom: 24px;
}
.f2n-meta-item { display: flex; align-items: center; gap: 6px; }
.f2n-meta-item svg { opacity: .55; flex-shrink: 0; }
.f2n-meta-item--soft { color: var(--line); }
.f2n-meta-item--soft ~ .f2n-meta-item { color: var(--muted); }
.f2n-article__meta strong { color: var(--ink-2); font-weight: 600; }
.f2n-meta-role { color: var(--muted); font-style: normal; font-size: var(--f2n-font-xs); }

/* Featured image */
.f2n-article__figure { margin-bottom: 28px; }
.f2n-article__featured {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-m);
}
.f2n-article__caption {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--muted);
  margin-top: 10px; padding: 0 4px;
}
.f2n-article__caption svg { opacity: .5; flex-shrink: 0; }

/* Article body */
.f2n-article__body {
  font-family: var(--font-body); font-size: var(--f2n-font-article, 17px);
  line-height: var(--f2n-line-height, 1.85); color: var(--ink-2);
}
.f2n-article__body p { margin-bottom: 20px; }
.f2n-article__body h2 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  margin: 36px 0 14px; color: var(--ink);
  padding-left: 16px; border-left: 3px solid var(--red);
}
.f2n-article__body h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin: 28px 0 12px; color: var(--ink);
}
.f2n-article__body img {
  width: 100%; border-radius: var(--radius);
  margin: 24px 0; box-shadow: var(--shadow-s);
}
.f2n-article__body strong { color: var(--ink); font-weight: 600; }
.f2n-article__body blockquote {
  margin: 28px 0; padding: 16px 20px;
  background: var(--red-subtle);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--ink-3);
}

/* Tags */
.f2n-article__tags {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.f2n-article__tags-label {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 600;
  color: var(--muted); letter-spacing: .05em; flex-shrink: 0;
}
.f2n-article__tag {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 500;
  color: var(--ink-3); background: var(--bg);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 3px 12px;
  transition: border-color .15s, color .15s;
}
.f2n-article__tag:hover { border-color: var(--red); color: var(--red); }

/* Share bar */
.f2n-article__share {
  margin-top: 28px; padding: 16px 20px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.f2n-article__share-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.f2n-article__share-label {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: .08em;
  margin-right: 4px;
}
.f2n-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 600;
  padding: 7px 14px; border-radius: var(--radius-sm);
  transition: opacity .15s, transform .12s;
}
.f2n-share-btn:hover { opacity: .85; transform: translateY(-1px); }
.f2n-share-btn--fb { background: #1877F2; color: #fff; }
.f2n-share-btn--tw { background: #000; color: #fff; }
.f2n-share-btn--wa { background: #25D366; color: #fff; }
.f2n-share-btn--copy {
  background: var(--bg); color: var(--ink-2);
  border: 1px solid var(--line);
}
.f2n-share-btn--copy.copied { color: #16a34a; border-color: #16a34a; background: #f0fdf4; }

/* Lang switcher in article */
.f2n-article__lang {
  display: flex; gap: 10px; margin-bottom: 20px;
  padding: 12px 16px; background: var(--red-subtle);
  border-radius: var(--radius); border-left: 3px solid var(--red);
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); align-items: center;
}
.f2n-article__lang span { color: var(--muted); }
.f2n-article__lang a {
  font-weight: 600; color: var(--red);
  padding: 4px 12px; border: 1px solid var(--red);
  border-radius: 4px; font-size: var(--f2n-font-xs); transition: all .2s;
}
.f2n-article__lang a:hover { background: var(--red); color: #fff; }
.f2n-article__body .f2n-lang-switcher { display: none !important; }

/* Related posts */
.f2n-related { margin-top: 48px; }
.f2n-related__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.f2n-related__grid > * { min-width: 0; }

/* ═══════════════════════════════════════════════════════════════
   AUTHOR CARD (single post)
═══════════════════════════════════════════════════════════════ */
.f2n-author-card {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 32px; padding: 20px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.f2n-author-card__avatar {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  background: var(--red-subtle); border: 2px solid var(--line);
}
.f2n-author-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.f2n-author-card__initial {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.f2n-author-card__info { flex: 1; min-width: 0; }
.f2n-author-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.f2n-author-card__label {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.f2n-author-card__name {
  font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--ink);
}
.f2n-author-card__name a:hover { color: var(--red); }
.f2n-author-card__desig {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--muted); margin-top: 2px;
}
.f2n-author-card__count {
  text-align: right; flex-shrink: 0;
}
.f2n-author-card__count-num {
  display: block; font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--red); line-height: 1;
}
.f2n-author-card__count-lbl {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
}
.f2n-author-card__bio {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--ink-3); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 10px;
}
.f2n-author-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 600;
  color: var(--red); transition: gap .15s;
}
.f2n-author-card__link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════════════
   AUTHOR ARCHIVE PAGE
═══════════════════════════════════════════════════════════════ */
.f2n-author-page { padding: 0 0 60px; }
.f2n-author-hero {
  background: #0d1117; padding: 36px; margin-bottom: 40px; display: flex;
}
.f2n-author-hero > .f2n-container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.f2n-author-hero__avatar {
  width: 110px; height: 110px; border-radius: 50%; flex-shrink: 0;
  border: 3px solid rgba(255,255,255,.12); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
}
.f2n-author-hero__avatar img { width: 100%; height: 100%; object-fit: cover; }
.f2n-author-hero__initial {
  font-family: var(--font-head); font-size: 40px; font-weight: 900;
  color: rgba(255,255,255,.4);
}
.f2n-author-hero__details { flex: 1; padding-left: 20px; }
.f2n-author-hero__label {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin: 6px;
}
.f2n-author-hero__name {
  font-family: var(--font-head); font-size: clamp(22px, 3vw, 34px);
  font-weight: 700; color: #fff; letter-spacing: -.02em;
}
.f2n-author-hero__desig { font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: rgba(255,255,255,.5); margin-top: 3px; }
.f2n-author-hero__bio {
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: rgba(255,255,255,.55);
  line-height: 1.65; margin-top: 10px; max-width: 520px;
}
.f2n-author-hero__stats { display: flex; gap: 28px; margin-top: 16px; }
.f2n-author-stat { display: flex; flex-direction: column; gap: 2px; }
.f2n-author-stat__num { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--red); line-height: 1; }
.f2n-author-stat__lbl { font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }
.f2n-author-body { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.f2n-author-body__main { min-width: 0; }
.f2n-author-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 32px; }
.f2n-author-grid > * { min-width: 0; }
.f2n-author-empty { font-family: var(--font-ui); color: var(--muted); padding: 40px 0; }
.f2n-author-page-info { font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--muted); font-weight: 400; }
.f2n-page-dots { display: inline-flex; align-items: center; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.f2n-footer { background: #0d111c; color: #6b7a90; padding-top: 52px; }
.f2n-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.f2n-footer__brand p {
  font-family: var(--font-ui); font-size: var(--f2n-font-size); line-height: 1.75;
  margin-top: 14px; color: #ffffff;
}
.f2n-footer__logo {
  font-family: var(--font-head); font-size: 30px; font-weight: 900; color: #fff;
  letter-spacing: -.02em; display: inline-block;
}
.f2n-footer__logo span { color: var(--red); }
.f2n-footer__col h4 {
  font-family: var(--font-ui); font-size: var(--f2n-font-size); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.f2n-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.f2n-footer__col ul li a {
  font-family: var(--font-ui); font-size: var(--f2n-font-sm, 13px); color: #ffffff;
  display: flex; align-items: center; gap: 6px;
  transition: color .18s var(--ease), padding-left .18s;
}
.f2n-footer__col ul li a::before { content: '›'; color: var(--red); font-size: 15px; }
.f2n-footer__col ul li a:hover { color: var(--red); padding-left: 4px; }

/* Social icons in footer */
.f2n-social { display: flex; gap: 10px; }
.f2n-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s, color .18s, background .18s;
}
.f2n-social a:hover { border-color: var(--red); color: var(--red); background: rgba(192,57,43,.1); }

.f2n-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: #ffffff;
}
.f2n-footer__bottom a { color: #ffffff; transition: color .15s; }
.f2n-footer__bottom a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   STATIC PAGE
═══════════════════════════════════════════════════════════════ */
.f2n-page { padding: 40px 0 64px; }
.f2n-page__layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.f2n-page__header { margin-bottom: 24px; }
.f2n-page__title {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 700;
}
.f2n-page__featured { margin-bottom: 28px; }
.f2n-page__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-m); }
.f2n-page__body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.85; color: var(--ink-2);
}
.f2n-page__body p { margin-bottom: 20px; }
.f2n-page__child-list { display: flex; flex-direction: column; gap: 4px; padding: 8px 0; }
.f2n-page__child-list li a {
  display: block; padding: 8px 14px;
  font-family: var(--font-ui); font-size: var(--f2n-font-xs); color: var(--ink-3);
  border-radius: var(--radius-sm); transition: background .12s, color .12s;
}
.f2n-page__child-list li a:hover { background: var(--red-subtle); color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .f2n-layout,
  .f2n-single__layout,
  .f2n-author-body,
  .f2n-page__layout { grid-template-columns: 1fr; }
  .f2n-sidebar { position: static; }
  .f2n-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .f2n-cat-grid { grid-template-columns: 1fr; }
  .f2n-cat-grid__main .f2n-card-lg__img { height: 240px; }
  .f2n-archive__grid { grid-template-columns: repeat(2, 1fr); }
  .f2n-acard--featured { grid-template-columns: 1fr; }
  .f2n-acard--featured .f2n-acard__img-wrap { min-height: 200px; aspect-ratio: 16/8; }
  .f2n-author-grid { grid-template-columns: 1fr; }
  .f2n-related__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .f2n-nav { display: none; }
  .f2n-hamburger { display: flex; }
  .f2n-cat-grid { grid-template-columns: 1fr; }
  .f2n-cat-grid__main .f2n-card-lg__img { height: 220px; }
  .f2n-archive__grid { grid-template-columns: 1fr 1fr; }
  .f2n-article__title { font-size: 22px; }
  .f2n-footer__top { grid-template-columns: 1fr; }
  .f2n-topbar { display: none; }
  .f2n-author-hero > .f2n-container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .f2n-container { padding: 0 16px; }
  .f2n-archive__grid { grid-template-columns: 1fr; }
  .f2n-related__grid { grid-template-columns: 1fr; }
  .f2n-archive__banner-inner { padding: 20px 16px; }
  .f2n-author-card { flex-direction: column; }
  .f2n-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .f2n-page-btn { min-width: 34px; height: 34px; }
  .f2n-article__meta { gap: 10px; }
  .f2n-share-btn span { display: none; }
  .f2n-share-btn { padding: 8px 10px; }
}

@media print {
  .f2n-topbar, .f2n-header, .f2n-ticker, .f2n-sidebar,
  .f2n-footer, .f2n-article__share, .f2n-mobile-nav { display: none !important; }
  .f2n-single__layout { grid-template-columns: 1fr; }
  .f2n-article__body { font-size: 12pt; line-height: 1.6; }
}