/* ═══════════════════════════════════════════════════
   736 — World‑Class Bengali News Portal
   Design System · LIGHT EDITORIAL · Burn Orange
   Colors: #F24E07 (Rust) — warm, engaging, soothing
   Surfaces: Cream-White · Black in text only
   ═══════════════════════════════════════════════════ */
@font-face {
  font-family: 'Sabyasachi';
  src: url('../fonts/Sabyasachi_Font_v1.1.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ── CSS VARIABLES ── */
:root {
  /* ── SURFACES (Light Cream Canvas) ── */
  --ink:         #1A1008;           /* primary text — deep warm black      */
  --ink-soft:    #3A2E22;           /* secondary dark text                 */
  --ink-mid:     #5A4A38;           /* mid-tone text                       */
  --paper:       #FAF8F3;           /* main background — cream white       */
  --paper-warm:  #F5F0E8;           /* slightly raised warm surface        */
  --paper-mid:   #E0D8CC;           /* border / divider — warm beige       */
  --paper-light: #FAF8F3;           /* page body bg                        */

  /* ── BRAND PALETTE ── */
  --rust:        #F24E07;
  --rust-dark:   rgba(242,78,7,.85);
  --rust-light:  rgba(242,78,7,.10);
  --gold:        #FAED55;
  --gold-dark:   rgba(250,237,85,.8);
  --gold-light:  rgba(250,237,85,.25);
  --teal:        #34C5FA;
  --teal-dark:   rgba(52,197,250,.8);
  --teal-light:  rgba(52,197,250,.15);

  /* ── NEUTRAL WARM GRAYS ── */
  --smoke:       #7A6A58;
  --smoke-lt:    #9A8A78;
  --ghost:       rgba(26,16,8,.04);
  --ghost-dark:  rgba(26,16,8,.08);

  /* ── GRADIENTS ── */
  --overlay:     linear-gradient(135deg, rgba(242,78,7,.88), rgba(52,197,250,.72));
  --tricolor:    linear-gradient(90deg, var(--rust), var(--gold), var(--teal));

  /* ── TYPOGRAPHY ── */
  --font-bn:   'Sabyasachi', serif;
  --font-en:   'EB Garamond', 'Garamond', Georgia, 'Times New Roman', serif;
  --font-en-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-disp: 'DM Serif Display', 'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;

  /* ── SPACING ── */
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* ── LAYOUT ── */
  --container:    1140px;
  --container-sm: 720px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-full:  9999px;

  /* ── SHADOWS (light-surface aware) ── */
  --shadow-sm: 0 1px 3px rgba(26,16,8,.10), 0 1px 2px rgba(26,16,8,.08);
  --shadow-md: 0 4px 16px rgba(26,16,8,.12), 0 2px 6px rgba(26,16,8,.08);
  --shadow-lg: 0 12px 40px rgba(26,16,8,.14), 0 4px 12px rgba(26,16,8,.10);
  --shadow-xl: 0 24px 64px rgba(26,16,8,.18);

  /* ── EASING ── */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur:      350ms;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: var(--font-bn);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-size: inherit; border: none; outline: none; background: none; }
input[type="text"], input[type="email"], input[type="search"],
input[type="url"], input[type="tel"], input[type="password"],
textarea, select {
  font-family: 'Noto Serif Bengali', 'Inter', 'Nirmala UI', 'Segoe UI', Tahoma, Geneva, sans-serif;
}
ul, ol { list-style: none; }

:focus-visible {
  outline: 2.5px solid var(--rust);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--gold);
  color: #1A1008;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper-warm); }
::-webkit-scrollbar-thumb { background: var(--paper-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C8B8A8; }

section[id] { scroll-margin-top: 80px; }
div[id]     { scroll-margin-top: 80px; }

/* ── PAGE LOAD FADE-IN ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: fadeIn .4s var(--ease); }

/* ── HERO ENTRANCE ANIMATIONS ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroShimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOAST NOTIFICATION ── */
.toast-notification {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 10px 24px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; z-index: 99999;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  white-space: nowrap; font-family: var(--font-bn);
}
.toast-notification.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── COPY CODE BUTTON ── */
.copy-code-btn {
  position: absolute; top: 8px; right: 8px;
  background: var(--paper-mid); color: var(--smoke);
  border: none; padding: 4px 12px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600; cursor: pointer; z-index: 2;
  font-family: var(--font-en);
  transition: background .2s, color .2s;
}
.copy-code-btn:hover { background: var(--teal); color: #1A1008; }

/* ── IMAGE SHIMMER / SKELETON ── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes imgReveal { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
img:not([src]), img[src=""], img.loading {
  background: linear-gradient(90deg, #EDE8E0 25%, #F5F0E8 50%, #EDE8E0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite var(--ease);
  min-height: 80px;
}
img.loaded { animation: imgReveal .45s var(--ease-out) both; }

/* ── RIPPLE EFFECT ── */
.ripple { position: relative; overflow: hidden; cursor: pointer; }
.ripple::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(242,78,7,.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.ripple:active::after { opacity: 1; transition: opacity 0s; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .back-top { transition: none; }
}

/* ── CONTAINER ── */
.container    { max-width: var(--container);    margin: 0 auto; padding: 0 var(--space-lg); }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 var(--space-lg); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: var(--space-md);
  background: var(--rust); color: #fff;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; z-index: 9999;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: var(--space-md); }

/* ══════════════════════════════════════════════
   TOPBAR — Gold background
══════════════════════════════════════════════ */
.topbar {
  background: var(--gold);
  color: #1A1008;
  font-size: 12px;
  border-bottom: 1px solid rgba(26,16,8,.12);
  position: relative;
  z-index: 300;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.topbar-date {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1A1008;
}
.topbar-links a { font-family: var(--font-en); }
.topbar-brand-link { font-family: var(--font-en); }
.topbar-date::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(242,78,7,.5);
}
.topbar-links { display: flex; align-items: center; gap: var(--space-md); }
.topbar-links a { color: #1A1008; opacity: .65; transition: opacity .2s, color .2s; font-size: 12px; }
.topbar-links a:hover { opacity: 1; color: var(--rust); }
.topbar-brand-link { display: flex; align-items: center; gap: 5px; font-weight: 700; letter-spacing: .04em; }
.topbar-brand-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--rust);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(242,78,7,.5);
}
.topbar-sep { opacity: .3; font-size: 10px; }
.topbar-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rust), rgba(242,78,7,.2), transparent);
  opacity: .5;
}

/* ══════════════════════════════════════════════
   HEADER / MASTHEAD — Cream surface
══════════════════════════════════════════════ */
.site-header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--paper-mid);
  box-shadow: 0 1px 0 rgba(250,237,85,.1), 0 2px 20px rgba(26,16,8,.08);
  transition: box-shadow .35s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 40px rgba(26,16,8,.14), 0 1px 0 rgba(250,237,85,.2);
}
.masthead {
  display: flex;
  flex-direction: column;
}
.masthead-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.masthead-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--space-lg);
  min-height: 80px;
}
.mh-left {
  flex: 1;
  min-width: 48px;
}
.masthead-top .site-logo {
  flex-shrink: 0;
}
.masthead-top .header-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.masthead-bottom {
  border-top: 1px solid var(--paper-mid);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.masthead-bottom::-webkit-scrollbar { display: none; }
.masthead-bottom .main-nav {
  display: flex;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--space-lg);
  gap: 4px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo-img {
  display: block;
  width: auto; height: 100px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(250,237,85,.12), 0 4px 24px rgba(242,78,7,.18);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.site-logo:hover .site-logo-img {
  box-shadow: 0 0 0 1px rgba(250,237,85,.25), 0 8px 40px rgba(242,78,7,.28);
  transform: scale(1.02);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
  border-radius: 1px;
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--rust);
}
.main-nav a:hover { background: rgba(242,78,7,.08); color: var(--rust); }
.main-nav a[aria-current="page"] { color: var(--rust); }

.header-actions { display: flex; align-items: center; gap: 6px; }

.search-toggle {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--smoke);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.search-toggle:hover { background: rgba(242,78,7,.1); color: var(--rust); }
.search-toggle svg { width: 18px; height: 18px; }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  cursor: pointer; border-radius: var(--radius-sm);
  transition: background .2s;
}
.burger:hover { background: rgba(242,78,7,.08); }
.burger span {
  display: block; width: 20px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(26,16,8,.55);
  z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--paper-mid);
  gap: 2px;
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), padding .3s var(--ease);
  padding: 0 var(--space-md);
}
.mobile-nav.open { max-height: 560px; padding: var(--space-md) var(--space-lg); }
.mobile-nav a {
  color: var(--ink-mid); font-size: 15px; font-weight: 600;
  padding: 10px 14px; border-radius: var(--radius-sm);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.mobile-nav a:hover { background: rgba(242,78,7,.08); color: var(--rust); transform: translateX(4px); }
.mobile-nav a[aria-current="page"] { color: var(--rust); }

.search-bar {
  display: block; background: var(--paper-warm);
  border-top: 1px solid var(--paper-mid);
  padding: 0 var(--space-md);
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease-out), padding .25s var(--ease-out);
}
.search-bar.open { max-height: 80px; padding: var(--space-md); }
.search-bar-form { max-width: var(--container); margin: 0 auto; position: relative; }
.search-bar-input {
  width: 100%; background: #fff;
  border: 1px solid var(--paper-mid);
  border-radius: var(--radius-md);
  color: var(--ink);
  padding: 10px 48px 10px 16px;
  font-size: 15px; font-family: var(--font-bn);
  transition: border-color .25s, box-shadow .25s;
}
.search-bar-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52,197,250,.12);
}
.search-bar-input::placeholder { color: var(--smoke-lt); }
.search-bar-btn {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  color: var(--smoke-lt); cursor: pointer; padding: 4px;
  transition: color .2s;
}
.search-bar-btn:hover { color: var(--teal); }
.search-bar-btn svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════
   BREAKING / TICKER — Rust background
══════════════════════════════════════════════ */
.breaking-bar {
  background: var(--rust);
  color: #fff;
  font-size: 13px; font-weight: 600;
  overflow: hidden; display: flex; align-items: center; height: 40px;
  border-bottom: 1px solid rgba(242,78,7,.3);
}
.breaking-label {
  flex-shrink: 0;
  background: rgba(0,0,0,.2);
  color: #fff;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center;
  letter-spacing: .06em; font-size: 10px;
  text-transform: uppercase; gap: 8px;
  font-family: var(--font-en); font-weight: 700;
}
.breaking-label::after {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.2} }
.ticker-wrap {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
}
.ticker-inner {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap; will-change: transform;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  padding: 0 var(--space-2xl);
  color: rgba(255,255,255,.92);
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.ticker-item::before { content: '◆'; font-size: 6px; color: rgba(255,255,255,.4); flex-shrink: 0; }
.ticker-item:first-child::before { display: none; }
@keyframes ticker { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════
   ISSUE BANNER — Warm orange tint
══════════════════════════════════════════════ */
.issue-banner {
  background: rgba(242,78,7,.06);
  border-bottom: 1px solid rgba(26,16,8,.1);
  padding: var(--space-md) 0;
  text-align: center;
  position: relative;
}
.issue-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--rust), rgba(242,78,7,.4), transparent);
  opacity: .5;
}
.issue-kicker {
  font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--rust);
  font-weight: 700; margin-bottom: 3px;
  font-family: var(--font-en);
}
.issue-heading {
  font-family: var(--font-disp);
  font-size: clamp(20px, 3vw, 28px);
  color: #1A1008; font-weight: 700; letter-spacing: -.01em;
}
.issue-tagline-en {
  font-family: var(--font-en);
  font-size: 12px; color: rgba(242,78,7,.65);
  margin-top: 4px; font-style: italic;
}

/* ══════════════════════════════════════════════
   HERO / COVER STORY — Burn Orange
══════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: #FCF9F5;
  border-bottom: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 5% 20%, rgba(242,78,7,.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(242,78,7,.05) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.hero-category-glow {
  position: absolute; top: -60%; left: -10%;
  width: 50%; height: 220%;
  background: radial-gradient(ellipse, rgba(242,78,7,.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rust) 0%, rgba(242,78,7,.4) 50%, transparent 100%);
  z-index: 2;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: var(--space-2xl);
  align-items: center;
  position: relative; z-index: 1;
}
.hero-content {
  animation: heroFadeUp .7s var(--ease-out) both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; z-index: 1;
}
.hero-content > * {
  animation: heroFadeUp .55s var(--ease-out) both;
}
.hero-content > .hero-kicker     { animation-delay: 0.05s; }
.hero-content > .hero-title      { animation-delay: 0.15s; }
.hero-content > .hero-excerpt    { animation-delay: 0.25s; }
.hero-content > .hero-meta-strip { animation-delay: 0.30s; }
.hero-content > .hero-tags       { animation-delay: 0.35s; }
.hero-content > .hero-actions    { animation-delay: 0.40s; }
.hero-visual {
  animation: heroScaleIn .6s var(--ease-out) both;
  animation-delay: 0.15s;
}
.hero-kicker {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(26,16,8,.45);
  margin-bottom: var(--space-md);
  font-family: var(--font-en); flex-wrap: wrap;
}
.hero-kicker-dot {
  width: 6px; height: 6px;
  background: var(--rust); border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(242,78,7,.6);
}
.hero-kicker-label {
  flex-shrink: 0;
  color: rgba(26,16,8,.5);
  letter-spacing: .18em;
}
.editor-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--rust);
  color: #fff;
  font-size: 8px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
  font-family: var(--font-en);
}
.hero-badge-wrap { display: flex; align-items: center; gap: 6px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 12px; border-radius: var(--radius-full);
  background: rgba(242,78,7,.08);
  color: var(--rust);
  font-size: 8px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; font-family: var(--font-en);
  border: 1px solid rgba(242,78,7,.15);
}
.hero-badge-dot {
  width: 4px; height: 4px;
  background: var(--rust);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--font-bn);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: #1A1008;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -.02em;
  text-rendering: optimizeLegibility;
}
.hero-excerpt {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(26,16,8,.55);
  line-height: 1.8; max-width: 56ch;
  margin-bottom: var(--space-lg);
  position: relative;
}
.hero-excerpt::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--rust);
  margin-top: var(--space-lg);
  border-radius: 2px;
  transition: width .4s var(--ease);
}
.hero-excerpt:hover::after { width: 80px; }
.hero-meta-strip {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(242,78,7,.12);
}
.hero-meta { display: flex; align-items: center; gap: var(--space-md); }
.hero-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: #fff; flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(242,78,7,.2);
  transition: box-shadow .25s, transform .25s;
}
.hero-meta:hover .hero-avatar {
  box-shadow: 0 0 0 3px var(--rust);
  transform: scale(1.05);
}
.hero-author-name {
  color: #1A1008; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 6px;
}
.hero-author-role {
  font-size: 9px; font-weight: 500;
  color: rgba(242,78,7,.6);
  background: rgba(242,78,7,.08);
  padding: 1px 8px; border-radius: var(--radius-full);
  font-family: var(--font-en);
}
.hero-author-date {
  color: rgba(26,16,8,.4); font-size: 11px; margin-top: 2px;
  display: flex; align-items: center; gap: 4px;
}
.hero-meta-sep { opacity: .3; color: rgba(242,78,7,.3); }
.hero-readtime { color: rgba(26,16,8,.4); }
.hero-engagement { display: flex; align-items: center; gap: var(--space-md); }
.hero-views, .hero-likes {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: rgba(26,16,8,.4);
  font-family: var(--font-en);
}
.hero-views svg { color: rgba(26,16,8,.2); }
.hero-likes svg { color: var(--rust); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--space-lg); }
.hero-tag {
  font-size: 10px; font-weight: 500; color: rgba(242,78,7,.6);
  background: rgba(242,78,7,.06); padding: 3px 12px;
  border-radius: var(--radius-full);
  transition: background .2s, color .2s, border-color .2s;
  font-family: var(--font-en);
  border: 1px solid rgba(242,78,7,.12);
}
.hero-tag:hover { background: rgba(242,78,7,.12); color: var(--rust); border-color: rgba(242,78,7,.2); }

.hero-actions { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rust);
  color: #fff;
  padding: 14px 32px; font-size: 13px; font-weight: 700;
  border-radius: 3px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease), background .3s;
  cursor: pointer;
  letter-spacing: .03em; position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(242,78,7,.25);
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.1);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.hero-cta:hover::before { opacity: 1; }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(242,78,7,.35); }
.hero-cta:active { transform: translateY(0) scale(.97); }
.hero-cta span, .hero-cta svg { position: relative; z-index: 1; }
.hero-cta svg { transition: transform .3s var(--ease); }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-share { display: flex; align-items: center; gap: 4px; }
.hero-share-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(242,78,7,.4); border-radius: 3px;
  transition: background .2s, color .2s, transform .2s; cursor: pointer;
  border: 1px solid rgba(242,78,7,.12);
  background: rgba(242,78,7,.04);
}
.hero-share-btn:hover {
  background: var(--rust); color: #fff;
  transform: translateY(-2px); border-color: var(--rust);
}
.hero-share-btn:active { transform: translateY(0); }

.hero-visual {
  position: relative; overflow: hidden;
  aspect-ratio: 420/500; background: rgba(242,78,7,.04);
  box-shadow: 0 24px 80px rgba(242,78,7,.12), 0 0 0 1px rgba(242,78,7,.10);
  border-radius: var(--radius-lg);
  will-change: transform;
}
@media (min-width: 1025px) {
  .hero-visual.parallax-active {
    transform: translateY(var(--parallax-y, 0));
    transition: transform 0.1s linear;
  }
}
.hero-visual-img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.hero-visual img, .hero-visual svg {
  width: 100%; height: 100%; max-width: none;
  object-fit: cover;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(242,78,7,.15) 100%);
  pointer-events: none; z-index: 1;
  border-radius: var(--radius-lg);
}
.hero-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(242,78,7,.04) 0%, transparent 50%);
  pointer-events: none; z-index: 1;
  border-radius: var(--radius-lg);
}

.hero-visual-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(242,78,7,.25) 100%);
  pointer-events: none; z-index: 2;
  border-radius: var(--radius-lg);
}

.hero-mouse-glow {
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(242,78,7,.08) 0%, transparent 60%);
  pointer-events: none; z-index: 5;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.hero-visual:hover .hero-mouse-glow { opacity: 1; }

.hero-visual-img-main {
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.hero:hover .hero-visual-img-main {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
}

.hero-visual-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(242,78,7,.06), transparent);
  transform: translateX(-100%) skewX(-15deg);
  pointer-events: none; z-index: 3;
}
.hero-visual:hover .hero-visual-shimmer {
  animation: heroShimmer 0.8s ease-in-out;
}

.hero-visual-border {
  position: absolute; inset: -1px;
  border: 1.5px solid rgba(242,78,7,.08);
  border-radius: var(--radius-lg);
  pointer-events: none; z-index: 4;
  transition: border-color .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
}
.hero-visual:hover .hero-visual-border {
  border-color: var(--rust);
  box-shadow: 0 0 40px rgba(242,78,7,.12);
  transform: scale(1.01);
}

.hero-secondary {
  background: var(--paper);
  border-top: 1px solid rgba(242,78,7,.08);
  position: relative; z-index: 1;
}
.hero-secondary::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), rgba(242,78,7,.2), transparent);
}
.hero-sec-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid; grid-template-columns: repeat(3,1fr);
  column-gap: var(--space-xl);
}
.hero-sec-item {
  display: block; padding: var(--space-lg) 0;
  border-right: 1px solid rgba(242,78,7,.08);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.hero-sec-item:last-child { border-right: none; }
.hero-sec-item:hover { opacity: .8; }
.hsi-cat {
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--rust);
  margin-bottom: 6px; font-family: var(--font-en);
  opacity: .8;
}
.hsi-title {
  font-weight: 700; font-size: 13px; color: var(--ink);
  line-height: 1.5; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .25s;
}
.hero-sec-item:hover .hsi-title { color: var(--rust); }
.hsi-byline { font-size: 11px; color: var(--smoke-lt); }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { padding: var(--space-xl) 0; }
.section-white { background: var(--paper); }
.section-warm  { background: var(--paper-warm); position: relative; }
.section-warm::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(250,237,85,.08) 0%, transparent 50%);
  pointer-events: none;
}
.section-dark  { background: var(--teal); color: #1A1008; }
.section-divider { padding: 0; }
.section-divider hr {
  border: none; border-top: 1px solid var(--paper-mid);
  max-width: var(--container); margin: 0 auto;
}

.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--paper-mid);
  position: relative;
}
.section-head::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width .45s var(--ease);
}
.section-head:hover::after { width: 80px; }
.section-head-left { display: flex; align-items: center; gap: var(--space-md); }
.section-head-bar {
  width: 4px; height: 36px;
  background: var(--tricolor);
  border-radius: 2px; flex-shrink: 0;
}
.section-head-title {
  font-family: var(--font-disp);
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 700;
  color: var(--ink); line-height: 1.2; letter-spacing: -.01em;
}
.section-head-link {
  font-size: 12px; font-weight: 700; color: #0A6E8A;
  transition: color .2s, gap .2s;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--font-en); text-transform: uppercase; letter-spacing: .04em;
}
.section-head-link::after { content: '→'; transition: transform .25s var(--ease); }
.section-head-link:hover { color: var(--teal); gap: 10px; }
.section-head-link:hover::after { transform: translateX(2px); }

/* ══════════════════════════════════════════════
   CARD GRID
══════════════════════════════════════════════ */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-xl); }
.article-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--paper-mid);
  border-radius: var(--radius-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
  position: relative;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(26,16,8,.1), 0 4px 12px rgba(26,16,8,.06);
  border-color: transparent;
}
.article-card::after {
  content: '';
  position: absolute;
  top: 0; left: var(--space-lg); right: var(--space-lg);
  height: 3px;
  background: var(--rust);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  opacity: 0;
}
.article-card:hover::after {
  opacity: 1;
}
.article-card a { display: flex; flex-direction: column; height: 100%; }
.card-thumb {
  position: relative; aspect-ratio: 16/11; overflow: hidden;
  background: #F0EBE2; flex-shrink: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(242,78,7,.1) 0%, rgba(250,237,85,.08) 50%, rgba(52,197,250,.06) 100%);
  opacity: 0; transition: opacity .4s var(--ease-out);
  z-index: 1; pointer-events: none;
}
.article-card:hover .card-thumb::after { opacity: 1; }
.card-thumb img, .card-thumb svg {
  width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: center;
  transition: transform .6s var(--ease);
}
.article-card:hover .card-thumb img,
.article-card:hover .card-thumb svg { transform: scale(1.06); }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--rust); color: #fff;
  font-size: 9px; font-weight: 700;
  letter-spacing: .1em; padding: 3px 10px;
  text-transform: uppercase; font-family: var(--font-en); z-index: 1;
}
.card-read-time {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #0A6E8A;
  font-size: 11px; padding: 3px 10px;
  border-radius: var(--radius-full); font-family: var(--font-en); z-index: 1;
  border: 1px solid rgba(52,197,250,.2);
}
.card-body {
  padding: var(--space-lg); display: flex;
  flex-direction: column; flex: 1;
  position: relative;
}
.card-body::before {
  content: '';
  position: absolute;
  top: 0; left: var(--space-lg); right: var(--space-lg);
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.article-card:hover .card-body::before { opacity: .8; }
.card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(26,16,8,.06);
  margin-top: auto; gap: var(--space-sm);
}
.card-author {
  font-size: 12px; font-weight: 600; color: var(--smoke);
  display: flex; align-items: center; gap: 5px; min-width: 0;
}
.card-author-av {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.card-footer-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.card-time  { font-size: 11px; color: var(--smoke-lt); font-family: var(--font-en); white-space: nowrap; }
.card-views {
  font-size: 11px; color: var(--smoke-lt); font-family: var(--font-en);
  display: inline-flex; align-items: center; gap: 3px;
}
.card-views svg { color: var(--smoke-lt); opacity: .6; }

/* ══════════════════════════════════════════════
   STREAM — Magazine Grid
══════════════════════════════════════════════ */
.stream-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-xl); }
.stream-card {
  background: #fff;
  border: 1px solid var(--paper-mid);
  overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
}
.stream-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52,197,250,.25);
  box-shadow: 0 12px 36px rgba(26,16,8,.1);
}
.stream-card-link {
  display: flex; flex-direction: column; height: 100%;
  text-decoration: none; color: inherit;
}
.stream-thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: #F0EBE2; flex-shrink: 0;
}
.stream-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,16,8,.08));
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.stream-card:hover .stream-thumb::after { opacity: 1; }
.stream-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.stream-card:hover .stream-thumb img { transform: scale(1.06); }
.stream-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--gold); color: #1A1008;
  font-size: 9px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 10px;
  border-radius: var(--radius-full); font-family: var(--font-en);
}
.stream-badge-alt {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
  color: #1A1008;
  font-size: 8px; font-weight: 700; letter-spacing: .06em;
  padding: 2px 8px; border-radius: var(--radius-full);
  font-family: var(--font-en); z-index: 1;
}
.stream-body { padding: var(--space-lg); flex: 1; display: flex; flex-direction: column; }
.stream-title {
  font-family: var(--font-bn); font-size: 16px; font-weight: 800;
  line-height: 1.5; margin-bottom: var(--space-sm);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1; transition: color .2s; color: var(--ink);
}
.stream-card:hover .stream-title { color: #0A6E8A; }
.stream-excerpt {
  font-size: 13px; color: var(--smoke); line-height: 1.7;
  margin-bottom: var(--space-md);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.stream-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(52,197,250,.6);
  margin-top: auto; padding-top: var(--space-md);
  border-top: 1px solid rgba(26,16,8,.06);
  font-family: var(--font-en);
}
.stream-author { font-weight: 600; color: var(--smoke); }
.stream-sep { color: var(--paper-mid); }
.stream-time { color: var(--smoke-lt); }
.stream-readtime { font-weight: 600; color: var(--smoke-lt); }
.stream-views { display: inline-flex; align-items: center; gap: 3px; color: var(--smoke-lt); }
.stream-views svg { opacity: .5; }

/* ══════════════════════════════════════════════
   FEATURED BAND — Gold Background
══════════════════════════════════════════════ */
.featured-band {
  background: var(--gold);
  padding: var(--space-3xl) 0;
  position: relative; overflow: hidden;
}
.featured-band-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(52,197,250,.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(242,78,7,.08) 0%, transparent 60%);
  pointer-events: none;
}
.featured-band::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--tricolor); opacity: .5;
}
.featured-band-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--space-lg);
  display: grid; grid-template-columns: 340px 1fr;
  gap: var(--space-3xl); align-items: center; position: relative; z-index: 1;
}
.featured-band-visual {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 340/260; background: rgba(26,16,8,.08);
  box-shadow: 0 8px 48px rgba(26,16,8,.2), 0 0 0 1px rgba(26,16,8,.08);
}
.featured-band-visual img, .featured-band-visual svg {
  width: 100%; height: 100%; object-fit: cover;
}
.featured-band-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,16,8,.15) 100%);
  pointer-events: none;
}
.featured-band-visual-chip {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(6px);
  color: #1A1008;
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 12px; border-radius: var(--radius-full); font-family: var(--font-en);
}
.featured-band-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #0A6E8A; margin-bottom: var(--space-md); font-family: var(--font-en);
}
.featured-band-star { color: var(--rust); margin-right: 2px; }
.featured-band-sep { opacity: .3; margin: 0 4px; }
.featured-band-title {
  font-family: var(--font-bn);
  font-size: clamp(24px, 3vw, 38px); font-weight: 900;
  color: #1A1008; line-height: 1.3;
  margin-bottom: var(--space-lg); letter-spacing: -.01em;
}
.featured-band-excerpt {
  font-size: 15px; color: rgba(26,16,8,.6); line-height: 1.8;
  max-width: 54ch; margin-bottom: var(--space-lg);
}
.featured-band-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(26,16,8,.45);
  margin-bottom: var(--space-xl); font-family: var(--font-en); flex-wrap: wrap;
}
.featured-band-author {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; color: rgba(26,16,8,.55);
}
.featured-band-av {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.featured-band-divider { opacity: .3; }
.featured-band-cta {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(26,16,8,.3); color: #1A1008;
  padding: 12px 28px; border-radius: 2px;
  font-size: 14px; font-weight: 700;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}
.featured-band-cta:hover {
  background: #1A1008; color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26,16,8,.2);
}
.featured-band-cta svg { transition: transform .25s; }
.featured-band-cta:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════
   TWO-COLUMN ROW
══════════════════════════════════════════════ */
.two-col-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.mini-section-head {
  font-family: var(--font-disp); font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--paper-mid);
  display: flex; align-items: center; justify-content: space-between;
}
.mini-section-head a {
  font-family: var(--font-bn); font-size: 12px; font-weight: 600;
  color: #0A6E8A; transition: color .2s;
}
.mini-section-head a:hover { color: var(--teal); }
.mini-card {
  display: flex; gap: var(--space-md); padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(26,16,8,.06);
  transition: background .2s var(--ease), transform .2s var(--ease), padding-left .2s var(--ease);
  border-radius: var(--radius-sm); cursor: default;
}
.mini-card:last-child { border-bottom: none; }
.mini-card:hover { background: rgba(52,197,250,.05); transform: translateX(4px); padding-left: 4px; }
.mini-thumb {
  width: 76px; height: 76px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0; background: #F0EBE2;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mini-card:hover .mini-thumb { transform: scale(.95); box-shadow: var(--shadow-sm); }
.mini-thumb img, .mini-thumb svg { width: 100%; height: 100%; object-fit: cover; }
.mini-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 4px; font-family: var(--font-en);
}
.mini-title {
  font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.mini-title:hover { color: #0A6E8A; }
.mini-meta { display: flex; align-items: center; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.mini-author { font-size: 11px; color: var(--smoke-lt); display: flex; align-items: center; gap: 4px; }
.mini-author-av {
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.mini-time { font-size: 10px; color: var(--smoke-lt); font-family: var(--font-en); }

/* ══════════════════════════════════════════════
   OPINIONS — Teal background
══════════════════════════════════════════════ */
.opinion-band {
  background: var(--teal);
  padding: var(--space-3xl) 0;
  position: relative; overflow: hidden;
}
.opinion-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(242,78,7,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(250,237,85,.1) 0%, transparent 70%);
  pointer-events: none;
}
.opinion-header {
  margin-bottom: var(--space-2xl);
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap;
  gap: var(--space-md); position: relative; z-index: 1;
}
.opinion-header-left { display: flex; align-items: center; gap: var(--space-lg); }
.opinion-header-bar {
  width: 4px; height: 48px;
  background: var(--tricolor); border-radius: 2px; flex-shrink: 0;
}
.opinion-kicker {
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(26,16,8,.55);
  display: block; margin-bottom: 4px; font-family: var(--font-en);
}
.opinion-head-title {
  font-family: var(--font-disp); font-size: 32px; font-weight: 700;
  color: #1A1008; line-height: 1.2;
}
.opinion-head-sub { font-size: 13px; color: rgba(26,16,8,.55); max-width: 360px; line-height: 1.6; }
.opinion-head-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: rgba(26,16,8,.55);
  font-family: var(--font-en); text-transform: uppercase; letter-spacing: .08em;
  transition: gap .3s var(--ease), color .2s; white-space: nowrap;
}
.opinion-head-cta:hover { gap: 14px; color: var(--rust); }

.opinion-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: var(--space-xl); position: relative; z-index: 1;
}
.opinion-card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(26,16,8,.08);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
}
.opinion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26,16,8,.15);
  border-color: rgba(242,78,7,.2);
}
.opinion-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.opinion-card-visual {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: #F0EBE2;
}
.opinion-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.opinion-card:hover .opinion-card-visual img { transform: scale(1.08); }
.opinion-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(52,197,250,.06) 0%, rgba(52,197,250,.2) 100%);
  pointer-events: none;
}
.opinion-card-quote {
  position: absolute; top: 10px; right: 14px;
  font-size: 52px; line-height: 1;
  color: rgba(26,16,8,.06); font-family: Georgia, serif; pointer-events: none;
}
.opinion-card-top {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.opinion-card-readtime { background: var(--rust); color: #fff; font-size: 10px; padding: 2px 10px; border-radius: var(--radius-full); font-family: var(--font-en); }
.opinion-card-cat {
  background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
  color: #1A1008; font-size: 8px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 10px; border-radius: var(--radius-full); font-family: var(--font-en);
}
.opinion-card-body { padding: var(--space-lg); flex: 1; display: flex; flex-direction: column; }
.opinion-card-author {
  display: flex; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-md); padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(26,16,8,.07);
}
.opinion-card-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: #fff; flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(250,237,85,.3);
}
.opinion-card-name { font-weight: 800; font-size: 14px; color: #1A1008; line-height: 1.2; }
.opinion-card-role { font-size: 11px; color: rgba(26,16,8,.45); margin-top: 1px; }
.opinion-card-title {
  font-family: var(--font-bn); font-size: 17px; font-weight: 800;
  color: #1A1008; line-height: 1.5; margin-bottom: var(--space-sm);
  flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.opinion-card:hover .opinion-card-title { color: var(--rust); }
.opinion-card-excerpt { font-size: 13px; color: rgba(26,16,8,.5); line-height: 1.7; margin-bottom: var(--space-md); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.opinion-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--space-md); border-top: 1px solid rgba(26,16,8,.07);
  margin-top: auto; gap: var(--space-sm);
}
.opinion-card-footer-right { display: flex; align-items: center; gap: 8px; }
.opinion-card-date { font-size: 11px; color: rgba(242,78,7,.5); font-family: var(--font-en); }
.opinion-card-views { font-size: 11px; color: rgba(242,78,7,.45); font-family: var(--font-en); display: inline-flex; align-items: center; gap: 3px; }
.opinion-card-views svg { opacity: .5; }
.opinion-card-likes { font-size: 11px; color: var(--rust); opacity: .6; }

/* ══════════════════════════════════════════════
   STATS BAR — Rust background
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--rust);
  border-top: 1px solid rgba(242,78,7,.2);
  border-bottom: 1px solid rgba(242,78,7,.2);
  padding: var(--space-xl) 0;
}
.stats-bar::before {
  content: '';
  display: block; height: 1px;
  background: var(--tricolor);
  opacity: .3;
  margin-bottom: var(--space-xl);
}
.stats-bar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--space-lg);
  display: grid; grid-template-columns: repeat(4,1fr);
  text-align: center; gap: var(--space-lg);
}
.stat-block { padding: var(--space-md); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-icon {
  display: block; margin-bottom: 2px;
  color: rgba(255,255,255,.35);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.stat-block:hover .stat-icon { color: rgba(255,255,255,.7); transform: translateY(-2px); }
.stat-number {
  display: block; font-family: var(--font-disp);
  font-size: clamp(30px, 4vw, 46px); font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,.65); letter-spacing: .04em; font-family: var(--font-en); }

/* ══════════════════════════════════════════════
   AUTHOR STRIP
══════════════════════════════════════════════ */
.author-strip {
  background: var(--paper-warm);
  border-top: 1px solid var(--paper-mid);
  border-bottom: 1px solid var(--paper-mid);
  padding: var(--space-lg) 0;
}
.author-strip-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--space-lg);
  display: flex; align-items: center; gap: var(--space-xl);
}
.author-strip-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--smoke); white-space: nowrap; flex-shrink: 0; font-family: var(--font-en);
}
.author-strip-row { display: flex; gap: var(--space-sm); flex-wrap: wrap; align-items: center; }
.author-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 4px 14px 4px 4px;
  background: #fff;
  border: 1px solid var(--paper-mid);
  border-radius: var(--radius-full);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease-out), border-color .25s;
}
.author-pill:hover { box-shadow: 0 4px 16px rgba(26,16,8,.1); transform: translateY(-2px); border-color: rgba(250,237,85,.4); }
.author-pill:active { transform: translateY(0) scale(.96); }
.author-pill-av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: #fff; flex-shrink: 0;
  transition: box-shadow .2s;
}
.author-pill:hover .author-pill-av { box-shadow: 0 0 0 2px var(--rust); }
.author-pill-name { font-size: 12px; font-weight: 700; color: var(--ink); }

/* ══════════════════════════════════════════════
   NEWSLETTER — Teal Section (kept vibrant)
══════════════════════════════════════════════ */
.newsletter-section {
  background: var(--teal);
  padding: var(--space-2xl) 0;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '736';
  position: absolute; right: -30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-disp);
  font-size: clamp(120px, 20vw, 220px); font-weight: 900;
  color: rgba(0,0,0,.05); line-height: 1;
  pointer-events: none; user-select: none;
}
.newsletter-inner {
  max-width: 560px; margin: 0 auto; padding: 0 var(--space-lg);
  text-align: center; position: relative; z-index: 1;
}
.newsletter-kicker {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(0,0,0,.45); font-weight: 700; margin-bottom: var(--space-md);
  font-family: var(--font-en);
}
.newsletter-title {
  font-family: var(--font-bn); font-size: clamp(24px, 3vw, 34px);
  font-weight: 900; color: #1A1008; line-height: 1.3; margin-bottom: var(--space-sm);
}
.newsletter-desc { font-size: 15px; color: rgba(0,0,0,.55); line-height: 1.7; margin-bottom: var(--space-xl); }
.newsletter-form {
  display: flex; gap: var(--space-sm); max-width: 440px;
  margin: 0 auto var(--space-md); transition: transform .25s var(--ease);
}
.newsletter-form:focus-within { transform: scale(1.01); }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,.6);
  border: 1.5px solid rgba(0,0,0,.15); border-radius: var(--radius-full);
  color: #1A1008; padding: 13px 22px; font-size: 14px; font-family: var(--font-bn);
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.newsletter-input::placeholder { color: rgba(0,0,0,.4); }
.newsletter-input:focus {
  background: rgba(255,255,255,.85); border-color: rgba(0,0,0,.3);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.newsletter-btn {
  background: var(--rust); color: #fff;
  padding: 13px 28px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .2s; font-family: var(--font-bn);
}
.newsletter-btn:hover { background: rgba(242,78,7,.85); color: #fff; transform: scale(1.03); }
.newsletter-note { font-size: 12px; color: rgba(0,0,0,.4); }
.newsletter-msg { margin-top: var(--space-md); padding: 10px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; display: none; }
.newsletter-msg.ok  { background: rgba(0,0,0,.08); color: #1A1008; }
.newsletter-msg.err { background: rgba(242,78,7,.15); color: var(--rust); }

/* ══════════════════════════════════════════════
   READING PROGRESS
══════════════════════════════════════════════ */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--tricolor); z-index: 9999;
  pointer-events: none; width: 0; transition: none;
}

/* ══════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--rust); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 20px rgba(242,78,7,.3); z-index: 999;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s, box-shadow .2s;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--gold); color: #1A1008; box-shadow: 0 4px 24px rgba(250,237,85,.5); transform: translateY(-3px); }
.back-top:active { transform: scale(.92); }
.back-top svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════
   FOOTER — Deep Rust/Warm Dark
══════════════════════════════════════════════ */
.site-footer {
  background: #1A1008;
  color: rgba(255,255,255,.6);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
  border-top: none;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--tricolor);
}
.footer-grid {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--space-lg);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl); margin-bottom: var(--space-2xl);
}
.footer-brand-name { font-family: var(--font-bn); font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; }
.footer-brand-tagline { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: var(--space-lg); margin-top: var(--space-sm); }
.footer-brand-desc { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 34ch; margin-bottom: var(--space-xl); }
.footer-logo-img { width: 48px; height: 46px; border-radius: 6px; flex-shrink: 0; }
.footer-brand-mark { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-sm); }
.footer-brand-tagline-en { font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: var(--space-lg); font-family: var(--font-en); }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social-link {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); border-radius: var(--radius-sm);
  color: rgba(255,255,255,.4);
  transition: background .25s, color .25s, transform .25s;
}
.footer-social-link:hover { background: var(--rust); color: #fff; transform: translateY(-2px); }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-lg); font-family: var(--font-en);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.4); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  padding: var(--space-lg) var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-dev { font-size: 10px; color: rgba(255,255,255,.18); font-family: var(--font-en); letter-spacing: .02em; }
.footer-dev strong { color: var(--gold); font-weight: 500; }
.footer-bottom-links { display: flex; gap: var(--space-lg); align-items: center; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--teal); }

/* ══════════════════════════════════════════════
   ARTICLE PAGE
══════════════════════════════════════════════ */
.article-cover-wrap {
  position: relative; overflow: hidden; width: 100%;
  aspect-ratio: 1200/500; max-height: 520px; background: #F0EBE2;
}
.article-cover { position: absolute; inset: 0; }
.article-cover img, .article-cover svg { width: 100%; height: 100%; max-width: none; object-fit: cover; display: block; }
.article-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(52,197,250,.12) 0%, transparent 55%),
              linear-gradient(to bottom, transparent 60%, rgba(26,16,8,.08) 100%);
  pointer-events: none;
}
.article-cover-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, transparent 20%, var(--paper) 100%);
  pointer-events: none;
}

.article-main { background: var(--paper); position: relative; z-index: 1; overflow: hidden; }
.article-body-inner { max-width: 740px; margin: 0 auto; padding: 0 var(--space-lg); }

.article-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.article-bg img {
  position: absolute; top: 50%; right: 0;
  width: 50%; max-width: 600px; transform: translateY(-50%);
  opacity: .025; object-fit: contain; filter: saturate(0.4);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at 70% 50%, black 20%, transparent 70%);
}

.article-body {
  font-size: 19px; line-height: 1.85;
  color: var(--ink);
  font-family: var(--font-bn);
}
.article-body p { margin-bottom: 1.5em; }
.article-body h2 {
  font-family: var(--font-bn); font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800; margin: 1.8em 0 .6em;
  color: var(--ink); line-height: 1.3;
  letter-spacing: -.01em;
}
.article-body h3 {
  font-family: var(--font-bn); font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700; margin: 1.6em 0 .5em;
  color: var(--ink-soft); line-height: 1.4;
}
.article-body blockquote {
  margin: 1.8em 0; padding: var(--space-lg) var(--space-xl);
  background: var(--paper-warm);
  border-left: 3px solid var(--rust);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 18px; line-height: 1.8;
  color: var(--ink-soft); font-style: italic;
  position: relative;
}
.article-body blockquote::before {
  content: '\201C';
  font-size: 48px; line-height: 1;
  color: var(--rust); opacity: .25;
  display: block; margin-bottom: -12px;
  font-family: Georgia, serif;
}
.article-body ul, .article-body ol { margin: 1em 0; padding-left: var(--space-xl); }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .4em; }
.article-body a {
  color: #0A6E8A;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(52,197,250,.3);
  transition: text-decoration-color .2s, color .2s;
}
.article-body a:hover { text-decoration-color: var(--teal); color: var(--teal); }
.article-body strong { font-weight: 800; color: var(--ink); }
.article-body img {
  max-width: 100%; height: auto; display: block;
  margin: 1.8em auto; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.article-body figure { margin: 2em 0; text-align: center; }
.article-body figcaption {
  font-size: 13px; color: var(--smoke-lt); text-align: center;
  margin-top: 8px; font-style: italic; line-height: 1.5;
}
.article-body hr {
  margin: 2.5em 0; border: none;
  border-top: 1px solid var(--paper-mid);
  position: relative;
}
.article-body hr::before {
  content: '\25C6';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--paper-mid); font-size: 10px;
  background: var(--paper); padding: 0 12px;
}
.article-body iframe { max-width: 100%; border-radius: var(--radius-sm); }

.article-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding-top: var(--space-xl); font-size: 12px;
  color: var(--smoke-lt); font-family: var(--font-en);
}
.article-breadcrumb a { color: #0A6E8A; transition: color .2s; }
.article-breadcrumb a:hover { color: var(--teal); }

.article-h1 {
  font-family: var(--font-bn);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; color: var(--ink);
  line-height: 1.2; margin-top: var(--space-lg); margin-bottom: var(--space-md);
  letter-spacing: -.02em;
  text-rendering: optimizeLegibility;
}

.article-excerpt-header { font-size: 18px; color: var(--smoke); line-height: 1.7; margin-bottom: var(--space-lg); max-width: 64ch; font-weight: 500; }

.article-byline {
  display: flex; align-items: center; gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--paper-mid);
  border-bottom: 1px solid var(--paper-mid);
  margin-bottom: var(--space-lg); flex-wrap: wrap;
}
.byline-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: #fff; flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(242,78,7,.2);
}
.byline-info { flex: 1; min-width: 0; }
.byline-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--smoke-lt); font-family: var(--font-en); }
.byline-name { font-weight: 800; font-size: 15px; color: var(--ink); transition: color .2s; }
.byline-name:hover { color: #0A6E8A; }
.byline-details { font-size: 12px; color: var(--smoke-lt); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-family: var(--font-en); }
.article-byline-sep { color: var(--paper-mid); font-size: 10px; }

.article-actions { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; }
.article-action-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
  border: 1.5px solid var(--paper-mid);
  background: var(--paper-warm); color: var(--smoke);
  font-family: var(--font-en);
}
.article-action-btn:hover { transform: translateY(-2px); }
.article-action-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.like-btn:hover { background: rgba(242,78,7,.07); border-color: rgba(242,78,7,.2); color: var(--rust); }
.like-btn[aria-pressed="true"] { background: rgba(242,78,7,.1); border-color: var(--rust); color: var(--rust); }
.like-btn[aria-pressed="true"] svg { fill: var(--rust); }
.share-btn:hover { background: rgba(52,197,250,.08); border-color: rgba(52,197,250,.25); color: #0A6E8A; }
.like-count { font-variant-numeric: tabular-nums; }

.toc-widget {
  background: var(--paper-warm); border: 1px solid var(--paper-mid);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-md); padding: var(--space-lg); margin-bottom: var(--space-xl);
}
.toc-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #0A6E8A; margin-bottom: var(--space-md); font-family: var(--font-en); }
.toc-nav { display: flex; flex-direction: column; gap: 6px; }
.toc-link { font-size: 13.5px; color: #0A6E8A; font-weight: 600; cursor: pointer; transition: opacity .2s; text-decoration: none; }
.toc-link:hover { opacity: .75; }
.toc-link-h2 { font-weight: 700; }
.toc-link-h3 { padding-left: var(--space-lg); font-weight: 500; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--paper-mid); }
.tag {
  display: inline-block; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--smoke);
  background: var(--paper-warm); border: 1px solid var(--paper-mid);
  border-radius: var(--radius-full); transition: all .2s;
}
.tag:hover { background: var(--rust); color: #fff; border-color: var(--rust); }

.article-share-bar {
  margin-top: var(--space-xl); padding: var(--space-lg);
  background: var(--paper-warm); border-radius: var(--radius-md);
  border: 1px solid var(--paper-mid);
}
.article-share-bar-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--smoke); margin-bottom: var(--space-md); font-family: var(--font-en); }
.article-share-bar-btns { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.share-bar-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .2s; border: none; font-family: var(--font-en);
}
.share-bar-btn:hover { opacity: .85; transform: translateY(-1px); }
.share-bar-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.share-bar-fb { background: #1877F2; color: #fff; }
.share-bar-x  { background: #1A1008; color: #fff; border: 1px solid rgba(255,255,255,.1); }
.share-bar-wa { background: #25D366; color: #fff; }
.share-bar-copy { background: var(--teal); color: #1A1008; }

.author-card-wrap {
  margin-top: var(--space-xl); padding: var(--space-lg);
  background: var(--paper-warm); border-radius: var(--radius-md);
  border: 1px solid var(--paper-mid); border-top: 2px solid var(--rust);
}
.author-card-body { flex: 1; min-width: 0; }
.author-card-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--smoke-lt); margin-bottom: 4px; font-family: var(--font-en); }
.author-card-social { display: inline-block; margin-top: var(--space-sm); font-size: 12px; font-weight: 600; color: #0A6E8A; }

.author-more-wrap { margin-top: var(--space-xl); }
.author-more-heading {
  font-family: var(--font-bn); font-size: 20px; font-weight: 800; color: var(--ink);
  margin-bottom: var(--space-lg); padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--paper-mid);
}
.author-more-list { display: flex; flex-direction: column; gap: 2px; }
.author-more-item {
  display: block; padding: var(--space-md); border-radius: var(--radius-sm);
  transition: background .2s var(--ease), transform .2s var(--ease), padding-left .2s var(--ease);
}
.author-more-item:hover { background: rgba(52,197,250,.05); transform: translateX(4px); padding-left: calc(var(--space-md) + 4px); }
.author-more-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #0A6E8A; font-family: var(--font-en); }
.author-more-title { display: block; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.5; margin: 2px 0; }
.author-more-meta { font-size: 11px; color: var(--smoke-lt); font-family: var(--font-en); }

/* ══════════════════════════════════════════════
   FORMS & SEARCH PAGE
══════════════════════════════════════════════ */
.search-page-btn:hover { background: var(--teal); transform: translateY(-1px); }

.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.form-error {
  background: rgba(242,78,7,.07); border: 1px solid rgba(242,78,7,.2); color: var(--rust);
  padding: 12px 18px; border-radius: var(--radius-md); margin-bottom: var(--space-md); font-size: 13px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 2px inset var(--paper-mid);
  border-radius: var(--radius-md);
  background: #fff;
  font-size: 15px;
  font-family: 'Noto Serif Bengali', 'Inter', 'Nirmala UI', 'Segoe UI', Tahoma, Geneva, sans-serif;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { outline: none; border-color: var(--rust); box-shadow: 0 0 0 3px rgba(242,78,7,.1); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-layout { display: grid; grid-template-columns: 1fr 240px; gap: var(--space-2xl); align-items: start; }
.form-stack { display: flex; flex-direction: column; gap: var(--space-md); }
.sticky-sidebar { position: sticky; top: 80px; }

.search-page-form {
  background: var(--paper-warm); border-bottom: 1px solid var(--paper-mid); padding: var(--space-xl) 0;
}
.search-page-form-inner { max-width: 600px; display: flex; gap: var(--space-sm); }
.search-empty-prompt { text-align: center; padding: var(--space-3xl) 0; color: var(--smoke); }
.search-empty-prompt p { font-size: 16px; }

/* ══════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════ */
.empty-state {
  min-height: 36vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: var(--space-3xl) var(--space-lg);
}
.empty-icon { width: 56px; height: 56px; margin: 0 auto var(--space-lg); color: var(--paper-mid); display: block; stroke-width: 1.5; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rust); color: #fff;
  padding: 13px 26px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 14px;
  transition: background .2s, transform .2s, box-shadow .2s;
  font-family: var(--font-bn);
}
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(242,78,7,.3); }

.btn-secondary {
  display: inline-flex; align-items: center;
  padding: 13px 26px; border: 2px solid var(--paper-mid);
  border-radius: var(--radius-full); font-weight: 700;
  font-size: 14px; color: var(--smoke);
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer; background: transparent; font-family: var(--font-bn);
}
.btn-secondary:hover { border-color: var(--teal); color: #0A6E8A; background: rgba(52,197,250,.07); }

/* ══════════════════════════════════════════════
   CONTACT SIDEBAR
══════════════════════════════════════════════ */
.contact-info-title { font-family: var(--font-bn); font-size: 18px; font-weight: 800; margin-bottom: var(--space-lg); }
.contact-info-item { margin-bottom: var(--space-lg); }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--smoke); margin-bottom: 4px; font-family: var(--font-en); }
.contact-info-link { color: var(--rust); font-weight: 600; }
.contact-info-text { font-size: 13px; color: var(--smoke); line-height: 1.6; }

/* ══════════════════════════════════════════════
   AD / BANNER
══════════════════════════════════════════════ */
.ad-banner-section { background: var(--paper); padding: var(--space-lg) 0; text-align: center; }
.ad-label { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--smoke-lt); margin-bottom: 6px; font-family: var(--font-en); }
.ad-banner { display: inline-block; border-radius: var(--radius-sm); overflow: hidden; max-width: 100%; }
.ad-widget { text-align: center; }
.ad-placeholder svg { width: 100%; height: auto; max-width: 240px; border-radius: var(--radius-sm); }

/* ══════════════════════════════════════════════
   POPULAR / MOST READ
══════════════════════════════════════════════ */
.popular-list { display: flex; flex-direction: column; }
.popular-item {
  display: flex; gap: var(--space-md); align-items: stretch;
  padding: var(--space-md) 0; border-bottom: 1px solid rgba(26,16,8,.06);
  text-decoration: none;
  transition: opacity .2s, transform .2s var(--ease), padding-left .2s var(--ease);
  border-radius: var(--radius-sm);
}
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { opacity: .8; transform: translateX(3px); padding-left: 4px; }
.popular-rank { font-family: var(--font-disp); font-size: 22px; font-weight: 700; color: var(--rust); line-height: 1; min-width: 24px; flex-shrink: 0; }
.popular-content { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.popular-cat { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--smoke-lt); font-family: var(--font-en); }
.popular-title { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.45; }
.popular-meta { font-size: 10px; color: var(--smoke-lt); }

/* ══════════════════════════════════════════════
   AUTHOR CARD (archive/sidebar)
══════════════════════════════════════════════ */
.author-card { display: flex; gap: var(--space-md); align-items: flex-start; }
.author-card-av { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 20px; flex-shrink: 0; }
.author-card-name { font-weight: 800; font-size: 15px; margin-bottom: 3px; }
.author-card-role { font-size: 12px; color: var(--smoke); margin-bottom: var(--space-sm); }
.author-card-bio { font-size: 13.5px; color: var(--smoke); line-height: 1.65; }
.author-card-link { display: inline-block; margin-top: var(--space-md); font-size: 12.5px; font-weight: 700; color: #0A6E8A; }

/* ══════════════════════════════════════════════
   CARD STATS
══════════════════════════════════════════════ */
.card-stats { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--smoke-lt); flex-shrink: 0; }
.card-stat { white-space: nowrap; }
.card-stat-date { white-space: nowrap; }

/* ══════════════════════════════════════════════
   SHARE BUTTONS
══════════════════════════════════════════════ */
.share-buttons { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.share-btn-fb, .share-btn-x, .share-btn-copy {
  padding: 7px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: opacity .2s, transform .2s; display: inline-flex; align-items: center;
}
.share-btn-fb:hover, .share-btn-x:hover, .share-btn-copy:hover { opacity: .85; transform: translateY(-1px); }
.share-btn-fb { background: var(--teal); color: #1A1008; border: none; }
.share-btn-x  { background: #1A1008; color: #fff; border: 1px solid #3A2E22; }
.share-btn-copy { background: var(--paper-warm); color: var(--ink); border: 1.5px solid var(--paper-mid); }

/* ══════════════════════════════════════════════
   COMMENT SECTION
══════════════════════════════════════════════ */
.comment-section { background: var(--paper-warm); padding: var(--space-2xl) 0; border-top: 2px solid var(--paper-mid); }
.comment-head { text-align: center; margin-bottom: var(--space-2xl); }
.comment-head-title { font-family: var(--font-bn); font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: var(--space-sm); }
.comment-head-desc { font-size: 13.5px; color: var(--smoke); max-width: 440px; margin: 0 auto; }
.comment-head-desc a { color: #0A6E8A; text-decoration: underline; text-underline-offset: 2px; }
.comment-form { max-width: 560px; margin: 0 auto; }
.comment-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-md); }
.comment-input, .comment-textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--paper-mid); border-radius: var(--radius-sm);
  background: #fff; font-size: 14px; color: var(--ink);
  font-family: var(--font-bn);
  transition: border-color .25s, box-shadow .25s;
}
.comment-input:focus, .comment-textarea:focus {
  border-color: var(--teal); outline: none;
  box-shadow: 0 0 0 3px rgba(52,197,250,.1);
}
.comment-textarea { resize: vertical; min-height: 100px; }

/* ══════════════════════════════════════════════
   ABOUT / TEAM
══════════════════════════════════════════════ */
.about-cta { margin-top: var(--space-xl); display: flex; gap: var(--space-md); flex-wrap: wrap; }
.author-team-card { padding: var(--space-xl) !important; }
.author-team-header { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md); }
.author-team-av { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 20px; flex-shrink: 0; }
.author-team-name { font-weight: 800; font-size: 16px; }
.author-team-role { font-size: 12px; color: var(--smoke); }
.author-team-bio { font-size: 13.5px; color: var(--smoke); line-height: 1.65; margin-bottom: var(--space-md); }
.author-team-link { font-size: 12.5px; font-weight: 700; color: #0A6E8A; }

/* ══════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════ */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--space-3xl) var(--space-lg); }
.error-code { font-family: var(--font-disp); font-size: 120px; font-weight: 900; color: var(--rust); opacity: .1; line-height: 1; }
.error-title { font-family: var(--font-bn); font-size: 28px; font-weight: 900; color: var(--ink); margin-bottom: var(--space-md); }
.error-desc { color: var(--smoke); font-size: 15px; margin-bottom: var(--space-xl); }

/* ══════════════════════════════════════════════
   CARD STYLES (docflix-inspired)
══════════════════════════════════════════════ */
.card-category {
  display: inline-block; padding: 2px 10px;
  border-radius: var(--radius-full);
  background: rgba(52,197,250,.1); color: #0A6E8A;
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 8px; font-family: var(--font-en);
  transition: background .2s, color .2s;
}
.article-card:hover .card-category { background: rgba(52,197,250,.18); color: #0A6E8A; }
.card-title {
  font-family: var(--font-bn);
  font-size: clamp(15px, 1.4vw, 17px); font-weight: 800; color: var(--ink);
  line-height: 1.5; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
  transition: color .25s var(--ease);
}
.article-card:hover .card-title { color: rgba(242,78,7,.85); }
.card-excerpt { font-size: 13px; color: var(--smoke); line-height: 1.65; margin-bottom: var(--space-md); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.section-sep-dot {
  display: inline-block; width: 5px; height: 5px;
  background: var(--paper-mid); border-radius: 50%;
  margin: 0 10px; flex-shrink: 0;
}

.trending-num {
  font-family: var(--font-disp); font-size: 28px; font-weight: 700;
  color: var(--rust); opacity: .2; line-height: 1; flex-shrink: 0;
  min-width: 32px; transition: opacity .2s;
}
.sidebar-related-item:hover .trending-num { opacity: .5; }

.article-breadcrumb-diamond { color: #0A6E8A; opacity: .4; font-size: 8px; margin: 0 4px; }

.article-readtime-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: rgba(242,78,7,.5);
  font-family: var(--font-en); margin-left: var(--space-md);
}
.article-readtime-badge svg { width: 14px; height: 14px; opacity: .5; }

.card-thumb-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 2px 10px; border-radius: var(--radius-full);
  font-size: 9px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; font-family: var(--font-en); z-index: 2;
  background: var(--rust); color: #fff;
  box-shadow: 0 2px 8px rgba(242,78,7,.25);
}

.section-hr { border: none; border-top: 1px solid var(--paper-mid); margin: 0 auto; max-width: var(--container); }

.section-subtitle { font-size: 12.5px; color: var(--rust); margin-top: 4px; font-family: var(--font-en); letter-spacing: .02em; opacity: .7; }

/* ══════════════════════════════════════════════
   BRAND — Watermarks, Editor's Pick
══════════════════════════════════════════════ */
.section-dark-wm { position: relative; overflow: hidden; }
.section-dark-wm::after {
  content: '736'; position: absolute; right: -20px; bottom: -20px;
  font-family: var(--font-disp); font-size: clamp(120px, 18vw, 200px); font-weight: 900;
  color: rgba(26,16,8,.04); line-height: 1; pointer-events: none; user-select: none;
}

.section-wm { position: relative; }
.section-wm::after {
  content: '736'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-disp); font-size: clamp(100px, 15vw, 180px); font-weight: 900;
  color: rgba(242,78,7,.04); line-height: 1; pointer-events: none; user-select: none;
}

.editor-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 10px; border-radius: var(--radius-full);
  background: rgba(242,78,7,.08);
  color: var(--rust); font-size: 8px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-en);
  border: 1px solid rgba(242,78,7,.15);
}
.editor-badge::before {
  content: ''; width: 4px; height: 4px;
  background: var(--rust); border-radius: 50%; animation: pulse 1.4s infinite;
}

.engagement-badge {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: var(--space-md); border-radius: var(--radius-sm);
  background: var(--paper-warm); border: 1px solid var(--paper-mid);
  font-size: 12px; color: var(--smoke);
}
.engagement-badge svg { width: 18px; height: 18px; color: var(--rust); flex-shrink: 0; }

.hero-brand-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(0deg, rgba(26,16,8,.25) 0%, transparent 100%);
  z-index: 2; display: flex; align-items: center; gap: var(--space-sm);
}
.hero-brand-strip svg { width: 16px; height: 16px; color: #1A1008; }

/* ══════════════════════════════════════════════
   RSS PAGE
══════════════════════════════════════════════ */
.rss-page-header {
  background: var(--gold);
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center; position: relative;
}
.rss-page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--tricolor);
}
.rss-page-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 16px; border-radius: var(--radius-full);
  background: rgba(242,78,7,.12); border: 1px solid rgba(242,78,7,.2);
  color: var(--rust); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; font-family: var(--font-en); margin-bottom: var(--space-lg);
}
.rss-page-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rust); animation: pulse 1.4s infinite; }
.rss-kicker { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(26,16,8,.5); font-family: var(--font-en); font-weight: 700; margin-bottom: var(--space-lg); }
.rss-page-title { font-family: var(--font-bn); font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; color: #1A1008; line-height: 1.3; margin-bottom: var(--space-sm); }
.rss-page-desc { font-size: 15px; color: rgba(26,16,8,.55); max-width: 500px; margin: 0 auto var(--space-xl); line-height: 1.7; }
.rss-page-actions { display: flex; align-items: center; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }
.rss-raw-url { font-family: var(--font-en); font-size: 12px; padding: 8px 16px; border-radius: var(--radius-sm); background: rgba(26,16,8,.07); color: rgba(26,16,8,.45); border: 1px solid rgba(26,16,8,.12); user-select: all; }
.rss-copy-btn, .rss-dl-btn { padding: 8px 18px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; cursor: pointer; transition: background .2s, color .2s; font-family: var(--font-en); text-decoration: none; border: none; }
.rss-copy-btn { background: var(--rust); color: #fff; }
.rss-copy-btn:hover { background: rgba(242,78,7,.85); }
.rss-dl-btn { background: rgba(26,16,8,.07); color: rgba(26,16,8,.5); border: 1px solid rgba(26,16,8,.1); }
.rss-dl-btn:hover { background: rgba(26,16,8,.12); color: #1A1008; }
.rss-list { max-width: 680px; margin: 0 auto; }
.rss-item { display: flex; gap: var(--space-lg); padding: var(--space-lg) 0; border-bottom: 1px solid rgba(26,16,8,.07); }
.rss-item:last-child { border-bottom: none; }
.rss-item-num { font-family: var(--font-disp); font-size: 28px; font-weight: 700; color: var(--rust); opacity: .25; line-height: 1; flex-shrink: 0; min-width: 36px; }
.rss-item-body { flex: 1; min-width: 0; }
.rss-item-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #0A6E8A; margin-bottom: 4px; font-family: var(--font-en); }
.rss-item-title { font-family: var(--font-bn); font-size: 17px; font-weight: 800; line-height: 1.5; margin-bottom: 6px; }
.rss-item-title a { color: var(--ink); transition: color .2s; }
.rss-item-title a:hover { color: #0A6E8A; }
.rss-item-excerpt { font-size: 13.5px; color: var(--smoke); line-height: 1.7; margin-bottom: var(--space-sm); }
.rss-item-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--smoke-lt); font-family: var(--font-en); }
.rss-item-sep { color: var(--paper-mid); }

/* ══════════════════════════════════════════════
   LANG TOGGLE
══════════════════════════════════════════════ */
.lang-toggle-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: #0A6E8A; text-decoration: none;
  padding: 2px 8px; border-radius: var(--radius-full);
  border: 1px solid rgba(52,197,250,.25);
  transition: all .2s;
}
.lang-toggle-btn:hover { background: var(--teal); color: #1A1008; border-color: var(--teal); }
.lang-toggle-icon { font-size: 13px; }
.lang-btn-mobile {
  display: none; background: transparent;
  border: 1px solid rgba(52,197,250,.25); color: #0A6E8A;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--radius-full); cursor: pointer; transition: all .2s;
}
.lang-btn-mobile:hover { background: var(--teal); color: #1A1008; }
@media (max-width: 768px) { .lang-btn-mobile { display: inline-flex; align-items: center; } }
.mobile-lang-toggle {
  font-weight: 700; color: #0A6E8A !important;
  text-transform: uppercase; font-size: 12px; letter-spacing: .04em;
  border-top: 1px solid rgba(26,16,8,.07); margin-top: 4px; padding-top: 12px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .card-grid         { grid-template-columns: repeat(2,1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .opinion-grid      { grid-template-columns: repeat(2,1fr); }
  .hero-inner        { grid-template-columns: 1fr 280px; gap: var(--space-xl); }
  .hero-title        { font-size: clamp(26px, 3.5vw, 38px); }
  .stats-bar-inner   { grid-template-columns: repeat(2,1fr); }
  .two-col-row       { gap: var(--space-xl); }
  .stream-grid       { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .masthead-top      { min-height: 64px; padding: 6px var(--space-md); }
  .masthead-bottom .main-nav {
    justify-content: flex-start;
    padding: 6px var(--space-md);
    gap: 2px;
  }
  .masthead-bottom .main-nav a { white-space: nowrap; padding: 8px 12px; font-size: 13px; }
  .burger            { display: flex; }
  .hero-inner        { grid-template-columns: 1fr; gap: var(--space-xl); padding: var(--space-2xl) var(--space-lg) var(--space-xl); }
  .hero-visual       { max-width: 100%; aspect-ratio: 4/3; max-height: 380px; }
  .hero-visual img, .hero-visual svg { object-fit: cover; object-position: center 20%; }
  .hero-sec-grid     { grid-template-columns: 1fr; }
  .hero-sec-item     { padding: var(--space-md) 0; border-right: none; border-bottom: 1px solid rgba(26,16,8,.08); }
  .hero-sec-item:last-child { border-bottom: none; }
  .hero-title        { font-size: clamp(24px, 6vw, 34px); }
  .card-grid         { grid-template-columns: 1fr; }
  .featured-band-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .featured-band-img { display: none; }
  .two-col-row       { grid-template-columns: 1fr; }
  .opinion-grid      { grid-template-columns: 1fr; }
  .stream-grid       { grid-template-columns: repeat(2,1fr); }
  .stats-bar-inner   { grid-template-columns: repeat(2,1fr); gap: var(--space-md); }
  .footer-grid       { grid-template-columns: 1fr; gap: var(--space-xl); }
  .article-sidebar   { display: none; }
  .topbar            { display: none; }
  .newsletter-form   { flex-direction: column; }
  .hero-secondary    { display: none; }
  .breaking-bar      { font-size: 12px; }
  .ticker-item       { padding: 0 var(--space-lg); }
  .form-layout       { grid-template-columns: 1fr; }
  .section           { padding: var(--space-xl) 0; }
  .comment-form-row  { grid-template-columns: 1fr; }
  .card-stat-date    { display: none; }
  .article-share-bar-btns { flex-wrap: wrap; }
  .share-bar-btn     { font-size: 11px; padding: 7px 12px; }
  .author-card-wrap  { padding: var(--space-md); }
  .article-cover-wrap { aspect-ratio: 16/9; max-height: 300px; }
}

@media (max-width: 600px) {
  .stream-grid       { grid-template-columns: 1fr; }
  .hero-sec-grid     { grid-template-columns: 1fr; }
  .opinion-grid      { grid-template-columns: 1fr; }
  .card-grid         { grid-template-columns: 1fr; }
  .stats-bar-inner   { grid-template-columns: repeat(2,1fr); }
  .section           { padding: var(--space-xl) 0; }
  .footer-grid       { grid-template-columns: 1fr; gap: var(--space-lg); }
  .search-page-form-inner { flex-direction: column; }
  :root { --space-lg: 14px; --space-xl: 24px; --space-2xl: 40px; --space-3xl: 56px; }
  .topbar            { display: none; }
  .article-cover-wrap { aspect-ratio: 16/9; max-height: 220px; }
  .hero-secondary    { display: none; }
  .topbar-inner      { flex-wrap: wrap; gap: 4px; }
}

@media (max-width: 480px) {
  :root { --space-lg: 12px; --space-xl: 20px; --space-2xl: 32px; --space-3xl: 48px; }
  .stats-bar-inner   { gap: var(--space-sm); }
  .author-strip-inner { flex-direction: column; align-items: flex-start; }
  .site-logo-img     { height: 72px; }
  .site-logo-bn      { font-size: 22px; }
  .article-h1        { font-size: clamp(20px, 6vw, 28px); }
  .hero-title        { font-size: clamp(22px, 7vw, 32px); }
  .hero-inner        { padding: var(--space-xl) var(--space-md) var(--space-lg); }
  .hero-meta         { flex-wrap: wrap; }
  .admin-topbar      { flex-direction: column; align-items: flex-start; }
  .admin-content     { padding: 12px; }
}

.archive-header { text-align: center; }
.archive-title-cat { margin-bottom: var(--space-sm); }
.archive-count-cat {
  font-size: 14px; font-weight: 700;
  color: var(--rust); margin-top: 0; text-align: center;
}
.cat-filter { padding: 12px 0; border-bottom: 1px solid var(--paper-mid); }
.cat-filter-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.cat-filter-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 16px; border-radius: var(--radius-full);
  background: var(--paper-warm); color: var(--smoke);
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background .2s, color .2s;
}
.cat-filter-pill:hover { background: var(--rust-light); color: var(--rust); }
.cat-filter-pill.active { background: var(--rust); color: #fff; }
.archive-count { text-align: center; }

.card-read-time {
  letter-spacing: .04em;
  font-family: var(--font-bn);
}

.form-stack {
  border: 2px solid var(--paper-mid);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  background: #fff;
  transition: border-color .2s;
}
.form-stack:focus-within {
  border-color: var(--rust);
}

/* ══════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════ */
@media print {
  .site-header, .topbar, .breaking-bar, .stats-bar,
  .author-strip, .site-footer, .newsletter-section,
  .back-top, .reading-progress, .article-sidebar,
  .header-actions, .article-actions { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .article-body { font-size: 12pt; line-height: 1.6; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 9pt; color: #666; }
}
/* ============================================================
   ADD THIS AT THE END OF assets/css/style.css
   (or create a separate file and load after style.css)
   ============================================================ */

/* ── CARD DATE BADGE (Bangla published date on thumbnail) ── */
.card-date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26, 16, 8, 0.68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-bn);
  letter-spacing: 0.02em;
  line-height: 1.5;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  opacity: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.article-card:hover .card-date-badge {
  background: rgba(242, 78, 7, 0.85);
  transform: translateY(-1px);
  opacity: 1;
}

/* ── HERO COUNT NUMBER (animated counters in hero) ── */
.hero-count-number {
  font-variant-numeric: tabular-nums;
}

/* ── ensure stat counters use tabular numbers ── */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* ── Mobile Menu Fix: main-nav visible on all screen sizes ── */
.burger { display: none !important; }
.nav-backdrop { display: none !important; }
.mobile-nav { display: none !important; }
@media (max-width: 768px) {
  .masthead-bottom .main-nav { justify-content: flex-start; }
  .lang-btn-mobile { display: inline-flex; }
}

/* ── responsive: smaller date badge on mobile ── */
@media (max-width: 768px) {
  .card-date-badge {
    font-size: 9px;
    padding: 2px 8px;
    bottom: 10px;
    left: 10px;
  }
}
