/* ============================================================
   beritasaham.id — design system v2
   Editorial finance media for first-time investors.
   Signature colour #74c69d used as a jewel accent, not a wash.
   Dark mode built on neutral slate so it never reads "too green".
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root {
  /* brand */
  --sage: #74c69d;
  --sage-ink: #2f855f;     /* readable green on light surfaces */
  --sage-deep: #0f3d2b;

  /* market semantics — kept perceptually apart from brand */
  --gain: #128a4e;
  --loss: #d33f38;
  --opinion: #b7791f;      /* used only for Opini Redaksi */

  /* light surfaces (cool neutral, deliberately not cream) */
  --bg: #eef1f0;
  --surface: #ffffff;
  --surface-2: #e6ece9;
  --surface-3: #dbe4df;
  --border: #d4ddd8;
  --border-strong: #b9c7c0;
  --text: #15201b;
  --text-muted: #55655d;
  --text-faint: #7c8b83;

  --veil: rgba(238, 241, 240, 0.60);
  --header-bg: rgba(238, 241, 240, 0.82);

  --shadow-card: 0 1px 2px rgba(21, 32, 27, 0.05), 0 8px 24px rgba(21, 32, 27, 0.06);
  --shadow-pop: 0 18px 50px rgba(21, 32, 27, 0.16);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --f-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --wrap: 1200px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --sage: #7fd3a8;
  --sage-ink: #7fd3a8;
  --sage-deep: #0c2c1f;

  --gain: #35c880;
  --loss: #ff6f64;
  --opinion: #e3ad4e;

  /* neutral slate — this is the fix for "too green" */
  --bg: #0c0e11;
  --surface: #15181d;
  --surface-2: #1b1f25;
  --surface-3: #22272f;
  --border: #282e36;
  --border-strong: #3a424c;
  --text: #eef1ef;
  --text-muted: #9aa39d;
  --text-faint: #6d766f;

  --veil: rgba(12, 14, 17, 0.55);
  --header-bg: rgba(12, 14, 17, 0.80);

  --shadow-card: 0 1px 2px rgba(0,0,0,0.4), 0 10px 30px rgba(0,0,0,0.35);
  --shadow-pop: 0 20px 60px rgba(0,0,0,0.6);
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: var(--bg); }

body {
  margin: 0;
  background: transparent;           /* the 3D canvas / html bg shows through */
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.6;
  transition: color 0.25s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--sage-ink);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---------- 3D background layers ---------- */
#bg-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -2; display: block; pointer-events: none;
}
#bg-veil {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, transparent 0%, var(--veil) 62%),
    var(--veil);
}

/* ---------- eyebrow / kicker ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--sage);
  display: inline-block;
}
.kicker {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-ink);
}

/* ============================== header ============================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.header-row { display: flex; align-items: center; gap: 30px; height: 66px; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 800; font-size: 20px;
  letter-spacing: -0.03em; white-space: nowrap; color: var(--text);
}
.logo .berita { color: var(--text); }
.logo .saham { color: var(--sage-ink); }
.logo .tld { color: var(--text-faint); font-weight: 600; }

.main-nav {
  display: flex; align-items: center; gap: 4px; flex: 1;
  font-family: var(--f-body); font-weight: 500; font-size: 14.5px;
}
.main-nav a {
  color: var(--text-muted); padding: 8px 12px; border-radius: var(--r-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover { color: var(--text); background: var(--surface-2); }
.main-nav a.active { color: var(--text); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
  transition: background 0.15s ease, transform 0.12s ease, border-color 0.15s ease;
}
.icon-btn:hover { background: var(--surface-2); border-color: var(--border-strong); }
.icon-btn:active { transform: scale(0.93); }
.icon-btn svg { width: 18px; height: 18px; }
.nav-toggle { display: none; }

.theme-btn { position: relative; }
.theme-btn svg {
  position: absolute; top: 50%; left: 50%; width: 18px; height: 18px;
  transition: opacity 0.2s ease, transform 0.4s cubic-bezier(.5,1.6,.4,1);
}
:root:not([data-theme="dark"]) .sun-icon { opacity: 1; transform: translate(-50%,-50%) rotate(0) scale(1); }
:root:not([data-theme="dark"]) .moon-icon { opacity: 0; transform: translate(-50%,-50%) rotate(-70deg) scale(.5); }
:root[data-theme="dark"] .sun-icon { opacity: 0; transform: translate(-50%,-50%) rotate(70deg) scale(.5); }
:root[data-theme="dark"] .moon-icon { opacity: 1; transform: translate(-50%,-50%) rotate(0) scale(1); }

.mobile-nav {
  display: none; flex-direction: column; padding: 4px 22px 16px;
  border-top: 1px solid var(--border);
  font-family: var(--f-body); font-weight: 500; font-size: 15.5px;
  background: var(--header-bg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 13px 4px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--sage-ink); font-weight: 600; }
@media (min-width: 721px) { .mobile-nav { display: none !important; } }

/* ============================== ticker ============================== */
.ticker-bar {
  position: relative; overflow: hidden;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.ticker-label {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; gap: 7px; padding: 0 15px;
  background: var(--surface); box-shadow: 16px 0 14px -10px var(--surface);
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--text-faint);
}
.ticker-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gain); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

.ticker-track { display: flex; width: max-content; padding-left: 150px; animation: marquee 46s linear infinite; }
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ticker-item {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--f-mono); font-size: 12.5px; padding: 9px 22px;
  border-right: 1px solid var(--border); white-space: nowrap;
}
.ticker-item .sym { font-weight: 700; color: var(--text); }
.ticker-item .px { color: var(--text-muted); }
.ticker-item .chg.up { color: var(--gain); font-weight: 600; }
.ticker-item .chg.down { color: var(--loss); font-weight: 600; }

/* ============================== buttons ============================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--f-body); font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: var(--r-sm); border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sage-ink); color: #fff; }
:root[data-theme="dark"] .btn-primary { color: #062114; }
.btn-primary:hover { box-shadow: 0 6px 18px -6px var(--sage-ink); }
.btn-ghost { background: var(--surface); border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); }

/* ============================== impact chips (signature) ============================== */
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 600;
  padding: 4px 9px 4px 7px; border-radius: var(--r-sm);
  border: 1px solid; line-height: 1;
}
.chip .tri { font-size: 8px; }
.chip.pos { color: var(--gain); border-color: color-mix(in srgb, var(--gain) 32%, transparent); background: color-mix(in srgb, var(--gain) 12%, transparent); }
.chip.neg { color: var(--loss); border-color: color-mix(in srgb, var(--loss) 32%, transparent); background: color-mix(in srgb, var(--loss) 12%, transparent); }

/* ============================== home: hero ============================== */
.hero {
  position: relative; padding: 74px 0 66px;
}
.hero-inner { max-width: 820px; }
.hero .eyebrow .live { width: 7px; height: 7px; border-radius: 50%; background: var(--loss); display: inline-block; animation: pulse 1.8s infinite; }
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 800; letter-spacing: -0.035em; margin-bottom: 20px;
}
.hero .dek {
  font-size: clamp(16px, 1.7vw, 20px); color: var(--text-muted);
  line-height: 1.55; max-width: 640px; margin: 0 0 24px;
}
.hero .chips { margin-bottom: 26px; }
.hero .chip { font-size: 12.5px; padding: 6px 11px 6px 9px; }

/* byline (no avatars) */
.byline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.byline .bar { width: 3px; height: 32px; background: var(--sage); border-radius: 2px; }
.byline .who { display: flex; flex-direction: column; gap: 2px; }
.byline .name { font-family: var(--f-body); font-weight: 700; font-size: 14px; }
.byline .role { font-family: var(--f-mono); font-weight: 500; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.byline .time { font-family: var(--f-mono); font-size: 12px; color: var(--text-faint); }
.byline .sep { color: var(--text-faint); }

/* ============================== home: sorotan (asymmetric feature) ============================== */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px; gap: 16px;
}
.section-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.section-head .see-all { font-family: var(--f-body); font-weight: 600; font-size: 13.5px; color: var(--sage-ink); }

.sorotan { padding: 20px 0 8px; }
.sorotan-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; }
.sorotan-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }

.feature-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); border-color: var(--border-strong); }
.feature-card .thumb { aspect-ratio: 16/9; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.feature-card.lead .thumb { aspect-ratio: 16/10; }
.feature-card .thumb svg { width: 100%; height: 100%; }
.feature-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.feature-card.lead .body { padding: 24px 26px 26px; }
.feature-card h3 { font-size: 20px; font-weight: 700; line-height: 1.16; }
.feature-card.lead h3 { font-size: 27px; }
.feature-card .dek { font-size: 14.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.feature-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-meta { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.03em; }

/* compact side cards without images */
.mini-card {
  display: flex; flex-direction: column; gap: 9px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); border-color: var(--border-strong); }
.mini-card h3 { font-size: 18px; font-weight: 700; line-height: 1.18; }
.mini-card .dek { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============================== home: latest + market ============================== */
.home-columns {
  display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 40px;
  padding: 54px 0 40px; align-items: start;
}
.feed { display: flex; flex-direction: column; }
.feed-item {
  display: grid; grid-template-columns: 150px 1fr; gap: 20px;
  padding: 22px 0; border-top: 1px solid var(--border);
}
.feed-item:first-child { border-top: none; padding-top: 4px; }
.feed-item .thumb { aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; background: var(--surface-2); border: 1px solid var(--border); }
.feed-item .thumb svg { width: 100%; height: 100%; }
.feed-item .content { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.feed-item h3 { font-size: 18.5px; font-weight: 700; line-height: 1.2; transition: color 0.15s ease; }
.feed-item:hover h3 { color: var(--sage-ink); }
.feed-item .dek { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.feed-item .foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* market rail */
.rail { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 20px; }
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-card);
}
.panel-title {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-display); font-weight: 800; font-size: 15px; margin-bottom: 4px;
}
.panel-title .stamp { font-family: var(--f-mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.05em; color: var(--text-faint); text-transform: uppercase; }
.panel-sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.04em; color: var(--text-faint); text-transform: uppercase; margin-bottom: 12px; }

.quote-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-top: 1px solid var(--border);
}
.quote-row:first-of-type { border-top: none; }
.quote-row .id .t { font-family: var(--f-mono); font-weight: 700; font-size: 14px; display: block; letter-spacing: -0.01em; }
.quote-row .id .n { font-size: 11px; color: var(--text-faint); }
.quote-row .v { text-align: right; font-family: var(--f-mono); }
.quote-row .v .p { font-size: 13.5px; font-weight: 600; display: block; }
.quote-row .v .c { font-size: 11.5px; font-weight: 600; }
.quote-row .v .c.up { color: var(--gain); }
.quote-row .v .c.down { color: var(--loss); }

.ad-slot {
  border: 1px dashed var(--border-strong); border-radius: var(--r-md);
  padding: 26px 16px; text-align: center;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint); background: var(--surface-2);
}

/* ============================== article page ============================== */
.masthead { position: relative; padding: 66px 0 44px; }
.masthead-inner { max-width: 860px; }
.masthead .kicker { display: inline-block; margin-bottom: 16px; }
.masthead h1 { font-size: clamp(30px, 4.6vw, 52px); font-weight: 800; letter-spacing: -0.032em; margin-bottom: 18px; }
.masthead .dek { font-size: clamp(16px, 1.7vw, 20px); color: var(--text-muted); line-height: 1.5; max-width: 680px; margin: 0 0 26px; }

.article-shell {
  display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 44px;
  padding-bottom: 80px; align-items: start;
}

.reading {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px 46px 44px; box-shadow: var(--shadow-card);
}
.reading .lead-visual { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); margin-bottom: 30px; background: var(--surface-2); }
.reading .lead-visual svg { width: 100%; display: block; }

.prose { font-size: 18px; line-height: 1.75; color: var(--text); }
.prose p { margin: 0 0 22px; }
.prose h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 38px 0 15px; }
.prose blockquote {
  margin: 30px 0; padding: 2px 0 2px 22px; border-left: 3px solid var(--sage);
  font-family: var(--f-display); font-weight: 700; font-size: 22px; line-height: 1.35; color: var(--text);
  letter-spacing: -0.01em;
}

.opini {
  margin: 38px 0 4px; padding: 26px 28px; border-radius: var(--r-md);
  background: color-mix(in srgb, var(--opinion) 9%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--opinion) 32%, var(--border));
  border-left: 3px solid var(--opinion);
}
.opini .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--opinion); margin-bottom: 14px;
}
.opini p { font-size: 17px; line-height: 1.65; color: var(--text); margin: 0 0 12px; }
.opini .op-byline { font-family: var(--f-body); font-weight: 700; font-size: 13px; color: var(--text-muted); margin-top: 10px; }

.disclaimer-note {
  margin-top: 26px; padding: 14px 16px; border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--border);
  font-family: var(--f-body); font-size: 12.5px; line-height: 1.6; color: var(--text-muted);
}

.impact-rail { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 18px; }
.impact-group {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-card);
}
.impact-group.pos { border-top: 3px solid var(--gain); }
.impact-group.neg { border-top: 3px solid var(--loss); }
.impact-group .g-title { display: flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 800; font-size: 14px; }
.impact-group.pos .g-title { color: var(--gain); }
.impact-group.neg .g-title { color: var(--loss); }
.impact-group .g-sub { font-family: var(--f-body); font-size: 12px; color: var(--text-faint); margin: 6px 0 12px; line-height: 1.45; }
.impact-group .caveat { font-family: var(--f-body); font-size: 11px; color: var(--text-faint); line-height: 1.5; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); }

/* ============================== search ============================== */
.search-head { padding: 52px 0 26px; }
.search-head h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.03em; }
.search-head .dek { color: var(--text-muted); margin: 8px 0 0; font-size: 15.5px; }
.search-head code { font-family: var(--f-mono); font-size: 0.85em; background: var(--surface-2); padding: 2px 6px; border-radius: 4px; color: var(--sage-ink); }
.search-box {
  display: flex; align-items: center; gap: 12px; margin-top: 22px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 15px 18px; box-shadow: var(--shadow-card);
  transition: border-color 0.15s ease;
}
.search-box:focus-within { border-color: var(--sage-ink); }
.search-box svg { width: 19px; height: 19px; color: var(--text-faint); flex-shrink: 0; }
.search-box input { border: none; background: transparent; outline: none; width: 100%; font-size: 17px; color: var(--text); font-family: var(--f-body); }
.search-box input::placeholder { color: var(--text-faint); }
.search-meta { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.03em; color: var(--text-faint); margin: 24px 0 6px; text-transform: uppercase; }
.search-results { display: flex; flex-direction: column; padding-bottom: 70px; }
.result-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 20px;
  padding: 22px 0; border-top: 1px solid var(--border);
}
.result-row .thumb { aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; background: var(--surface-2); border: 1px solid var(--border); }
.result-row .thumb svg { width: 100%; height: 100%; }
.result-row .content { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.result-row h3 { font-size: 18px; font-weight: 700; line-height: 1.2; }
.result-row:hover h3 { color: var(--sage-ink); }
.result-row .dek { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.search-empty { padding: 70px 20px; text-align: center; color: var(--text-faint); font-family: var(--f-body); font-size: 15px; }

/* ============================== footer ============================== */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 54px 0 34px; }
.footer-col h5 { font-family: var(--f-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-col p, .footer-col a { display: block; font-family: var(--f-body); font-size: 14px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.footer-col a:hover { color: var(--sage-ink); }
.footer-note {
  border-top: 1px solid var(--border); padding: 22px 0 34px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--f-body); font-size: 12.5px; line-height: 1.7; color: var(--text-faint);
}
.footer-note .badge {
  flex-shrink: 0; font-family: var(--f-mono); font-weight: 600; font-size: 11px;
  letter-spacing: 0.06em; padding: 5px 11px; border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--opinion) 16%, transparent); color: var(--opinion);
}

/* ============================== responsive ============================== */
@media (max-width: 1000px) {
  .home-columns { grid-template-columns: 1fr; gap: 34px; }
  .rail { position: static; }
  .article-shell { grid-template-columns: 1fr; gap: 30px; }
  .impact-rail { position: static; }
  .sorotan-grid { grid-template-columns: 1fr; }
  .sorotan-side { grid-template-rows: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  body { font-size: 16px; }
  .hero { padding: 52px 0 44px; }
  .reading { padding: 26px 22px 30px; }
  .prose { font-size: 16.5px; }
  .feed-item { grid-template-columns: 96px 1fr; gap: 14px; }
  .result-row { grid-template-columns: 92px 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0 22px; }
  .footer-note { flex-direction: column; }
}
@media (max-width: 460px) {
  .feed-item { grid-template-columns: 1fr; }
  .feed-item .thumb { aspect-ratio: 16/9; }
  .result-row { grid-template-columns: 1fr; }
  .result-row .thumb { aspect-ratio: 16/9; }
}
