/* ============================================================
   কোরআনের জ্যোতি
   Header: দ্বিস্তর (locked) + mobile drawer
   ============================================================ */

@font-face {
  font-family: 'Bornomala';
  src: url('../fonts/Bornomala-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bornomala';
  src: url('../fonts/Bornomala-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
:root {
  --ff: 'Bornomala', 'Noto Sans Bengali', system-ui, sans-serif;

  --ink:      #0C1B17;
  --ink-2:    #35544B;
  --ink-3:    #6B857C;

  --deep:     #06332D;
  --deep-2:   #0A4A42;
  --emerald:  #13786C;
  --emerald-2:#1A9384;
  --mint:     #D9EDE9;
  --mint-2:   #ECF6F4;

  --sand:     #C49E5F;
  --sand-2:   #E4CFA8;

  --cream:    #FBFAF7;
  --paper:    #FFFFFF;
  --line:     #E4E9E6;
  --line-warm: rgba(255,255,255,.16);

  --r-md:  18px;
  --r-xl:  34px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(12,27,23,.05);
  --shadow-md: 0 12px 32px -12px rgba(12,27,23,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
  --pad: clamp(20px, 5vw, 64px);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--emerald-2); outline-offset: 2px; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
img, svg { display: block; max-width: 100%; }
p { margin: 0; }
.wrap { width: min(1200px, 100% - (var(--pad) * 2)); margin-inline: auto; }
/* ── brand / nav primitives ────────────────────────────── */
.nav { display: flex; align-items: center; gap: 22px; padding-block: 18px; }
.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; flex-shrink: 0; }
.brand__logo { width: auto; height: 34px; }
.brand__sub { font-size: 11.5px; color: var(--ink-3); line-height: 1.3; }
.nav__menu { display: flex; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav__side { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  display: grid; place-items: center; color: var(--ink-2);
  border: 1px solid var(--line);
  transition: background .22s var(--ease), border-color .22s var(--ease);
}
.icon-btn:hover { background: var(--mint-2); border-color: var(--mint); }
.icon-btn svg { width: 17px; height: 17px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 700; white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(160deg, var(--emerald-2), var(--deep-2));
  color: #fff; box-shadow: 0 10px 24px -10px rgba(6,51,45,.55);
}
.btn--primary:hover { box-shadow: 0 16px 30px -12px rgba(6,51,45,.6); transform: translateY(-1px); }
.btn--sand { background: var(--sand); color: #2A1F06; box-shadow: 0 10px 24px -12px rgba(196,158,95,.9); }
.btn--sand:hover { background: #D0AC6E; transform: translateY(-1px); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
/* ============================================================
   HEADER — দ্বিস্তর
   ============================================================ */
.h-tier { position: relative; z-index: 20; }
/* tier 1 — utility strip */
.h-tier__top {
  background: linear-gradient(100deg, var(--deep) 0%, var(--emerald) 100%);
  color: rgba(255,255,255,.82); font-size: 13px;
}
.h-tier__top .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 9px;
}
.h-tier__date { display: flex; align-items: center; gap: 8px; }
.h-tier__date svg { width: 14px; height: 14px; opacity: .7; }
.h-tier__top .right { display: flex; align-items: center; gap: 18px; }
.h-tier__live { display: flex; align-items: center; gap: 8px; color: var(--sand-2); font-weight: 700; }
.h-tier__live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sand);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,158,95,.55); }
  50%      { box-shadow: 0 0 0 6px rgba(196,158,95,0); }
}
.h-tier__social { display: flex; gap: 6px; }
.h-tier__social a {
  display: block; color: rgba(255,255,255,.82);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.h-tier__social a:hover { color: #fff; transform: translateY(-1px); }
.h-tier__social svg { width: 26px; height: 26px; }
/* tier 2 — brand, search, CTA */
.h-tier__main {
  position: relative; z-index: 2;
  background: var(--paper); border-bottom: 1px solid var(--line);
}
/* tier 3 — menu */
.h-tier__nav { background: var(--paper); border-bottom: 1px solid var(--line); }
.h-tier__nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.h-tier__nav .nav__menu a {
  display: block; position: relative;
  padding: 13px 15px; font-size: 15.5px; color: var(--ink-2);
  transition: color .22s var(--ease);
}
.h-tier__nav .nav__menu a:hover { color: var(--deep); }
.h-tier__nav .nav__menu a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 0; height: 2px;
  background: var(--emerald); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform .25s var(--ease);
}
.h-tier__nav .nav__menu a:hover::after, .h-tier__nav .nav__menu .is-active a::after { transform: scaleX(1); }
.h-tier__nav .nav__menu .is-active a { color: var(--deep); font-weight: 700; }
.h-tier__ask {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--deep);
  padding: 7px 14px; border-radius: var(--r-pill); background: var(--mint-2);
  transition: background .2s var(--ease);
}
.h-tier__ask:hover { background: var(--mint); }
.h-tier__ask svg { width: 16px; height: 16px; }
/* ============================================================
   SEARCH
   ============================================================ */
.search { position: relative; flex: 1; max-width: 400px; margin-inline: auto; }
.search__field {
  display: flex; align-items: center; gap: 10px;
  padding: 0 6px 0 16px; border-radius: var(--r-pill);
  background: var(--mint-2); border: 1px solid transparent;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.search.is-open .search__field, .search__field:focus-within { border-color: var(--emerald-2); background: var(--paper); }
.search__icon { width: 17px; height: 17px; color: var(--ink-3); flex-shrink: 0; }
.search__field input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: none;
  font-size: 14.5px; padding-block: 11px;
}
.search__field input::placeholder { color: var(--ink-3); }
.search__clear {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: var(--ink-3);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.search__clear[hidden] { display: none; }
.search__clear:hover { background: var(--mint-2); color: var(--ink); }
.search__clear svg { width: 14px; height: 14px; }
.search__panel {
  position: absolute; z-index: 30; top: calc(100% + 10px); left: 50%;
  width: min(560px, 92vw);
  padding: 8px; border-radius: var(--r-xl);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(26px) saturate(200%); -webkit-backdrop-filter: blur(26px) saturate(200%);
  border: 1px solid rgba(19,120,108,.16);
  box-shadow: 0 24px 54px -22px rgba(6,51,45,.34);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.search.is-open .search__panel { opacity: 1; visibility: visible; transform: translateX(-50%); }
.search__label { font-size: 12.5px; color: var(--ink-3); padding: 10px 14px 8px; }
.search__results { list-style: none; margin: 0; padding: 0; }
.search__results li[hidden] { display: none; }
.search__results a {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 14px; border-radius: var(--r-md);
  transition: background .18s var(--ease);
}
.search__results a:hover { background: var(--mint-2); }
.search__results svg { width: 18px; height: 18px; color: var(--emerald); flex-shrink: 0; }
.search__results span { flex: 1; font-size: 15px; line-height: 1.6; }
.search__results em {
  font-style: normal; font-size: 12px; color: var(--ink-2);
  padding: 4px 11px; border-radius: var(--r-pill);
  background: var(--mint-2); white-space: nowrap;
}
.search__empty { padding: 22px 14px 26px; text-align: center; font-size: 14.5px; color: var(--ink-3); }
/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 80; }
.drawer[hidden] { display: none; }
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(6,51,45,.42);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; inset-block: 0; right: 0;
  width: min(400px, 88vw);
  display: flex; flex-direction: column; gap: 16px;
  padding: 18px 18px calc(20px + env(safe-area-inset-bottom));
  background: var(--cream);
  border-left: 1px solid var(--line);
  box-shadow: -34px 0 64px -32px rgba(6,51,45,.5);
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.drawer__top .brand__logo { height: 30px; }
.drawer__search {
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px; border-radius: var(--r-pill);
  background: var(--mint-2); border: 1px solid transparent;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.drawer__search:focus-within { border-color: var(--emerald-2); background: var(--paper); }
.drawer__search svg { width: 17px; height: 17px; color: var(--ink-3); flex-shrink: 0; }
.drawer__search input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: none;
  font-size: 15.5px; padding-block: 13px;
}
.drawer__search input::placeholder { color: var(--ink-3); }
.drawer__menu { list-style: none; margin: 0; padding: 0; }
.drawer__menu > li + li { margin-top: 2px; }
.drawer__menu > li > a, .drawer__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 14px 16px; border-radius: var(--r-md);
  font-size: 16.5px; text-align: left; color: var(--ink);
  transition: background .2s var(--ease);
}
.drawer__menu > li > a:hover, .drawer__toggle:hover { background: var(--mint-2); }
.drawer__toggle svg { width: 17px; height: 17px; color: var(--ink-3); transition: transform .28s var(--ease); }
.drawer__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__menu > .is-active > a, .drawer__menu > .is-active > .drawer__toggle {
  background: var(--mint); color: var(--deep); font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(19,120,108,.18);
}
.drawer__sub { list-style: none; margin: 4px 0 6px; padding: 0 0 0 16px; }
.drawer__sub[hidden] { display: none; }
.drawer__sub li { border-left: 1px solid var(--line); }
.drawer__sub a {
  display: block; padding: 11px 16px; font-size: 15px; color: var(--ink-2);
  transition: color .2s var(--ease);
}
.drawer__sub a:hover { color: var(--deep); }
.drawer__cta { margin-top: auto; }
.drawer__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.drawer__live { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--deep); }
.drawer__live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sand);
  animation: pulse 2s var(--ease) infinite;
}
.drawer__social { display: flex; gap: 4px; color: var(--emerald); }
.drawer__social svg { width: 28px; height: 28px; }
.drawer__social a { transition: transform .2s var(--ease); }
.drawer__social a:hover { transform: translateY(-2px); }
/* ============================================================
   RESPONSIVE
   ============================================================ */
.nav__burger { display: none; }
@media (max-width: 1080px) {
.h-tier__nav { display: none; }  .nav__burger { display: grid; }  .nav__side { margin-left: auto; }  .search { max-width: none; }
}

@media (max-width: 720px) {
.brand__sub { display: none; }  .nav { gap: 12px; }  .nav__side .btn span { display: none; }  .nav__side .btn { padding: 12px; }  .h-tier__top .wrap { justify-content: center; }  .h-tier__date, .h-tier__social { display: none; }  .h-tier__main .nav { flex-wrap: wrap; row-gap: 14px; }  .h-tier__main .brand { margin-right: auto; }  .search { order: 3; flex-basis: 100%; margin-inline: 0; }  .search__results em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
*, .drawer__panel, .drawer__scrim { transition-duration: .01ms !important; animation: none !important; }
}

/* ============================================================
   HERO — shared primitives
   ============================================================ */
.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero__stack {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-block: clamp(64px, 8vw, 124px);
}
.hero__wordmark { width: clamp(240px, 28vw, 351px); height: auto; }
.hero__stack--left { align-items: flex-start; text-align: left; }
.hero__stack--left .hero__desc { margin-top: 24px; max-width: 50ch; }
.hero__stack--left .findbar { margin-top: 30px; }
.hero__stack--left .popular { justify-content: flex-start; }
.hero__chip {
  display: inline-flex; align-items: center;
  padding: 7px 16px; margin-bottom: 22px;
  border-radius: var(--r-pill);
  font-size: 13.5px; color: var(--sand-2);
  background: rgba(255,255,255,.08); border: 1px solid rgba(196,158,95,.34);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero__desc {
  margin-top: 22px; max-width: 62ch;
  font-size: clamp(15.5px, 1.3vw, 17.5px); line-height: 1.85; color: rgba(255,255,255,.88);
}
/* ── the search bar: the hero's whole job ─────────────────── */
.findbar {
  display: flex; align-items: center; gap: 10px;
  width: min(600px, 100%); margin-top: 34px;
  padding: 4px 4px 4px 20px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 20px 46px -22px rgba(0,0,0,.5);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.findbar:focus-within { border-color: var(--emerald-2); box-shadow: 0 22px 50px -20px rgba(19,120,108,.5); }
.findbar__icon { width: 19px; height: 19px; color: var(--ink-3); flex-shrink: 0; }
.findbar input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: none;
  font-size: 16px; padding-block: 13px;
}
.findbar input::placeholder { color: var(--ink-3); }
.findbar input::-webkit-search-cancel-button { -webkit-appearance: none; }
.findbar .btn { flex-shrink: 0; }
/* ── popular searches ─────────────────────────────────────── */
.popular {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.78);
}
.popular a {
  padding: 6px 15px; border-radius: var(--r-pill); font-size: 13.5px;
  border: 1px solid rgba(255,255,255,.34); color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.popular a:hover { background: rgba(255,255,255,.16); border-color: #fff; }
/* ============================================================
   হিরো ১ — নূর
   ============================================================ */
.hero--noor {
  display: flex; min-height: clamp(620px, 78vh, 840px);
  background: linear-gradient(172deg, #0A4A42 0%, #08382E 52%, #062720 100%);
}
.hero--noor .hero__stack { justify-content: center; }
.hero--noor .hero__burn { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero--noor .hero__burn img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: 58% 50%;
  mix-blend-mode: luminosity; opacity: .62;
  -webkit-mask-image: linear-gradient(100deg, transparent 10%, rgba(0,0,0,.28) 34%, rgba(0,0,0,.72) 54%, #000 74%);
  mask-image: linear-gradient(100deg, transparent 10%, rgba(0,0,0,.28) 34%, rgba(0,0,0,.72) 54%, #000 74%);
}
.hero--noor .hero__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 62% at 74% 48%, rgba(46,168,146,.2), transparent 70%),
    linear-gradient(100deg, rgba(2,18,15,.9) 0%, rgba(3,24,20,.8) 32%, rgba(4,28,23,.34) 62%, rgba(4,28,23,.1) 100%),
    radial-gradient(124% 104% at 62% 50%, transparent 48%, rgba(2,18,15,.58) 100%),
    linear-gradient(180deg, rgba(4,28,23,.4), transparent 28%),
    linear-gradient(0deg, rgba(2,18,15,.56), transparent 52%);
}
/* ============================================================
   HERO — responsive
   ============================================================ */
@media (max-width: 720px) {
.hero__stack { padding-block: 52px 60px; }  .hero--noor { min-height: clamp(520px, 82vh, 640px); }
/* stacked text spans the full width, so the right-weighted mask would sit
     bright image behind it — dim evenly and lean on the veil instead */
.hero--noor .hero__burn img {
    object-position: 62% 50%; opacity: .34;
    -webkit-mask-image: none; mask-image: none;
  }  .hero--noor .hero__veil {
    background:
      radial-gradient(62% 40% at 62% 76%, rgba(46,168,146,.16), transparent 70%),
      linear-gradient(180deg, rgba(3,22,18,.6), rgba(3,22,18,.28) 46%, rgba(2,18,15,.64) 100%),
      linear-gradient(rgba(3,22,18,.36), rgba(3,22,18,.36));
  }  .hero__desc { margin-top: 16px; }  .findbar {
    flex-wrap: wrap; border-radius: 26px; padding: 12px; gap: 10px; margin-top: 26px;
  }  .findbar__icon { display: none; }  .findbar input { flex-basis: 100%; padding-inline: 8px; }  .findbar .btn { width: 100%; }  .popular { gap: 8px; font-size: 13px; }
}

/* ============================================================
   SECTION — shared chrome
   ============================================================ */
.sec { padding-block: clamp(48px, 6vw, 88px); background: var(--cream); }
.sechead {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(24px, 3vw, 40px); flex-wrap: wrap;
}
.sectitle {
  margin: 14px 0 0; font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700; letter-spacing: -.3px; line-height: 1.4;
}
.sectitle:first-child { margin-top: 0; }
.secsub { margin: 10px 0 0; max-width: 54ch; font-size: 15.5px; line-height: 1.8; color: var(--ink-2); }
.seclink {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  padding: 10px 18px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 700; color: var(--deep);
  background: var(--paper); border: 1px solid var(--line);
  transition: all .22s var(--ease);
}
.seclink:hover { border-color: var(--emerald-2); background: var(--mint-2); }
.seclink svg { width: 15px; height: 15px; transition: transform .22s var(--ease); }
.seclink:hover svg { transform: translateX(3px); }
/* ============================================================
   বিভাগ — নেভিগেশন ব্যান্ড (locked)
   Deliberately NOT cards: this is wayfinding, not content, so it
   reads as a tinted shelf between two card sections.
   ============================================================ */
.sec--cats {
  padding-block: clamp(36px, 4vw, 60px);
  background: linear-gradient(180deg, var(--mint-2) 0%, #E6F2EE 100%);
}
.sechead--tight { margin-bottom: clamp(18px, 2vw, 26px); }
.sec--cats .seclink { background: rgba(255,255,255,.75); }
.cattags {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.cattags a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 12px 10px 18px; border-radius: var(--r-pill);
  font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(12,27,23,.04);
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.cattags a:hover {
  border-color: var(--emerald-2); color: var(--deep);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.cattags b {
  font-size: 12.5px; font-weight: 700; color: var(--ink-3);
  padding: 3px 10px; border-radius: var(--r-pill); background: var(--mint-2);
}
.cattags a:hover b { background: var(--mint); color: var(--emerald); }
/* ============================================================
   প্রশ্নোত্তর ৩ — ফিল্টার
   ============================================================ */
.feed__bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.feed__bar button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 17px; border-radius: var(--r-pill);
  font-size: 14.5px; color: var(--ink-2);
  background: var(--paper); border: 1px solid var(--line);
  transition: all .22s var(--ease);
}
.feed__bar button svg { width: 15px; height: 15px; }
.feed__bar button b {
  font-size: 12px; font-weight: 700; padding: 2px 8px;
  border-radius: var(--r-pill); background: var(--mint-2); color: var(--emerald);
}
.feed__bar button:hover { border-color: var(--emerald-2); color: var(--deep); }
.feed__bar button[aria-pressed="true"] {
  background: linear-gradient(160deg, var(--emerald-2), var(--deep-2));
  border-color: transparent; color: #fff; font-weight: 700;
  box-shadow: 0 10px 22px -12px rgba(6,51,45,.6);
}
.feed__bar button[aria-pressed="true"] b { background: rgba(255,255,255,.2); color: #fff; }
.feed__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.feed__list li[hidden] { display: none; }
.feed__list a {
  display: flex; flex-direction: column; height: 100%;
  padding: 22px; border-radius: 22px;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feed__list a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--mint); }
.feed__top { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.feed__icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 12px;
}
.feed__icon svg { width: 18px; height: 18px; }
.feed__icon--video { color: #8A6B26; background: #F7F1E6; }
.feed__icon--text { color: var(--emerald); background: var(--mint-2); }
.feed__kind { font-size: 13px; font-weight: 700; }
.feed__kind--video { color: #8A6B26; }
.feed__kind--text { color: var(--emerald); }
.feed__body { min-width: 0; }
.feed__q { display: block; font-size: 16.5px; font-weight: 700; line-height: 1.65; }
.feed__list a:hover .feed__q { color: var(--deep); }
.feed__excerpt {
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; line-clamp: 3;
  overflow: hidden; margin-top: 9px;
  font-size: 14.5px; line-height: 1.85; color: var(--ink-2);
}
.feed__foot {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.feed__cat {
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 700; color: var(--emerald);
  background: var(--mint-2); white-space: nowrap;
}
.feed__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-style: normal; font-size: 12.5px; color: var(--ink-3);
}
.feed__meta i { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
.feed__go {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: auto; flex-shrink: 0; white-space: nowrap;
  font-size: 13.5px; font-weight: 700; color: var(--ink-3);
  transition: color .22s var(--ease);
}
.feed__go svg { width: 15px; height: 15px; transition: transform .22s var(--ease); }
.feed__list a:hover .feed__go { color: var(--deep); }
.feed__list a:hover .feed__go svg { transform: translateX(3px); }
/* ── responsive ── */
@media (max-width: 820px) {
.feed__list { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
.feed__list a { padding: 18px; }  .feed__q { font-size: 15.5px; }  .feed__excerpt { font-size: 14px; }  .feed__foot { gap: 8px; }  .feed__meta { display: none; }
}

/* ============================================================
   বয়ান — নিমগ্ন (locked)
   ============================================================ */
.bstage__play {
  position: absolute; display: grid; place-items: center;
  border-radius: 50%; color: var(--deep);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 26px -10px rgba(0,0,0,.5);
  transition: transform .25s var(--ease);
}
.bstage__play svg { width: 60%; height: 60%; }
.sec--bplayer {
  position: relative; overflow: hidden; color: #fff;
  padding-block: clamp(64px, 8vw, 124px);
  background:
    radial-gradient(58% 48% at 14% 4%, rgba(26,147,132,.32), transparent 62%),
    radial-gradient(46% 44% at 88% 86%, rgba(196,158,95,.16), transparent 66%),
    radial-gradient(80% 60% at 50% 108%, rgba(3,22,18,.7), transparent 70%),
    linear-gradient(166deg, #0B5147 0%, #083A30 48%, #051F1A 100%);
}
/* faint girih tile for texture — keeps the panel from reading as flat colour */
.sec--bplayer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M36 2 L70 36 L36 70 L2 36 Z'/%3E%3Cpath d='M12 12 H60 V60 H12 Z'/%3E%3Cpath d='M36 14 L58 36 L36 58 L14 36 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
  opacity: .05;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 20%, transparent 78%);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 20%, transparent 78%);
}
.sec--bplayer > .wrap { position: relative; }
.bplayer__orn { position: absolute; top: -46px; right: -56px; width: 260px; opacity: .26; pointer-events: none; }
.sechead--dark .sectitle { color: #fff; }
.sechead--dark .secsub { color: rgba(255,255,255,.7); }
.seclink--dark {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff;
}
.seclink--dark:hover { background: rgba(255,255,255,.15); border-color: rgba(196,158,95,.5); }

/* ── featured stage, shared by all three ── */
.bfeat {
  position: relative; display: block; width: 100%;
  border-radius: 24px; overflow: hidden; aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 64px -30px rgba(0,0,0,.6);
}
.bfeat--wide { aspect-ratio: 2.9/1; }
.bfeat img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.bfeat__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(4,28,23,.94) 4%, rgba(4,28,23,.4) 56%, rgba(4,28,23,.14) 100%);
}
.bfeat__play {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%);
  display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%;
  color: var(--deep); background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.5);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.bfeat__play svg { width: 26px; height: 26px; margin-left: 3px; }
.bfeat:hover .bfeat__play { transform: translate(-50%,-50%) scale(1.08); background: var(--sand-2); }
.bfeat__meta { position: absolute; left: clamp(18px, 2.6vw, 34px); right: 18px; bottom: clamp(18px, 2.6vw, 30px); }
.bfeat__tag {
  display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--sand-2);
  padding: 5px 13px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(196,158,95,.34);
}
.bfeat__meta b {
  display: block; margin-top: 12px; color: #fff;
  font-size: clamp(18px, 2vw, 26px); font-weight: 700; line-height: 1.5; max-width: 24ch;
}
.bfeat__meta em {
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 9px;
  font-style: normal; font-size: 12.5px; color: rgba(255,255,255,.68);
}
.bfeat__meta em i { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); }

/* ── thumb-on-top card ── */
.bcard { display: block; }
.bcard__thumb {
  position: relative; display: block; aspect-ratio: 16/10;
  border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.bcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.bcard:hover .bcard__thumb { border-color: rgba(196,158,95,.45); transform: translateY(-3px); }
.bcard:hover .bcard__thumb img { transform: scale(1.05); }
.bcard__play {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%);
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  color: var(--deep); background: rgba(255,255,255,.9);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.bcard__play svg { width: 15px; height: 15px; margin-left: 2px; }
.bcard:hover .bcard__play, .brow:hover .bcard__play { transform: translate(-50%,-50%) scale(1.1); background: var(--sand-2); }
.bcard__dur {
  position: absolute; right: 8px; bottom: 8px;
  padding: 3px 9px; border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 700; color: #fff; background: rgba(4,28,23,.78);
}
.bcard__t {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2;
  overflow: hidden; margin-top: 13px;
  font-size: 15px; font-weight: 700; line-height: 1.6; color: #fff;
  transition: color .2s var(--ease);
}
.bcard:hover .bcard__t { color: var(--sand-2); }
.bcard__m {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 7px;
  font-style: normal; font-size: 12.5px; color: rgba(255,255,255,.55);
}
.bcard__m i { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.28); }

/* ── thumb-left row card ── */
.brow {
  display: flex; align-items: center; gap: 15px;
  padding: 11px; border-radius: 18px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  transition: background .22s var(--ease), border-color .22s var(--ease);
}
.brow:hover { background: rgba(255,255,255,.11); border-color: rgba(196,158,95,.4); }
.brow__thumb {
  position: relative; flex-shrink: 0; width: clamp(120px, 13vw, 156px); aspect-ratio: 16/10;
  border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.06);
}
.brow__thumb img { width: 100%; height: 100%; object-fit: cover; }
.brow__body { min-width: 0; }
.brow__body b {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2;
  overflow: hidden; font-size: 15px; font-weight: 700; line-height: 1.6; color: #fff;
}
.brow__body em {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 7px;
  font-style: normal; font-size: 12.5px; color: rgba(255,255,255,.55);
}
.brow__body em i { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.28); }

/* ============================================================
   ১ — স্তর
   ============================================================ */
.bgrid {
  list-style: none; margin: clamp(18px, 2.4vw, 30px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px);
}

/* ============================================================
   ২ — মোজাইক
   ============================================================ */
.bmos {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px); align-items: start;
}
.bmos .bfeat { grid-column: span 2; }
.bmos .bcard--tall {
  padding: 11px; border-radius: 18px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  transition: background .22s var(--ease), border-color .22s var(--ease);
}
.bmos .bcard--tall:hover { background: rgba(255,255,255,.11); border-color: rgba(196,158,95,.4); }
.bcard--tall .bcard__thumb { aspect-ratio: 10/9; border: 0; border-radius: 12px; }
.bmos .bcard--tall:hover .bcard__thumb { transform: none; }
.bmos .bcard--tall .bcard__t, .bmos .bcard--tall .bcard__m { padding-inline: 4px; }
.bmos .bcard--tall .bcard__m { margin-bottom: 4px; }

/* ============================================================
   ৩ — ক্যারোসেল
   ============================================================ */
.bscroll { margin-top: clamp(20px, 2.6vw, 32px); }
.bscroll__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 14px;
}
.bscroll__label {
  display: flex; align-items: center; gap: 9px; margin: 0;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,.85);
}
.bscroll__label span {
  font-size: 12px; padding: 3px 9px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); color: var(--sand-2);
}
.bscroll__nav { display: flex; gap: 8px; }
.bscroll__nav button {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.bscroll__nav button:hover { background: rgba(196,158,95,.22); border-color: rgba(196,158,95,.5); }
.bscroll__nav button svg { width: 17px; height: 17px; }
.bscroll__nav button[data-scroll="-1"] svg { transform: rotate(180deg); }
.bscroll__list {
  list-style: none; margin: 0; padding: 0 0 6px;
  display: grid; grid-auto-flow: column; grid-auto-columns: 27%;
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.bscroll__list::-webkit-scrollbar { display: none; }
.bscroll__list > li { scroll-snap-align: start; }
.bcard--more { display: grid; place-items: center; height: 100%; }
.bcard__more {
  display: grid; justify-items: center; gap: 6px; width: 100%; padding: 26px 18px;
  border-radius: 16px; text-align: center;
  background: rgba(255,255,255,.05); border: 1px dashed rgba(196,158,95,.4);
  transition: background .22s var(--ease), border-color .22s var(--ease);
}
.bcard--more:hover .bcard__more { background: rgba(196,158,95,.14); border-color: rgba(196,158,95,.7); }
.bcard__more svg { width: 26px; height: 26px; color: var(--sand-2); }
.bcard__more b { font-size: 15px; font-weight: 700; color: #fff; }
.bcard__more em { font-style: normal; font-size: 12.5px; color: rgba(255,255,255,.55); }

/* ── responsive ── */
@media (min-width: 1081px) {
  .bmos { align-items: stretch; }
  .bmos .bcard--tall { display: flex; flex-direction: column; }
  .bmos .bcard--tall .bcard__thumb { flex: 1; min-height: 0; aspect-ratio: auto; }
}
@media (max-width: 1080px) {
  .bgrid { grid-template-columns: repeat(2, 1fr); }
  .bmos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bmos .bfeat { grid-column: span 2; }
  .bcard--tall .bcard__thumb { aspect-ratio: 16/10; }
  .bscroll__list { grid-auto-columns: 42%; }
}
@media (max-width: 760px) {
  .bfeat--wide { aspect-ratio: 16/9; }
  .bscroll__list { grid-auto-columns: 72%; }
}
@media (max-width: 560px) {
  .bgrid, .bmos { grid-template-columns: 1fr; }
  .bmos .bfeat { grid-column: auto; }
  .bfeat, .bfeat--wide { aspect-ratio: 16/11; }
  .bfeat__play { width: 56px; height: 56px; }
  .bfeat__meta b { font-size: 17px; max-width: none; }
  .bscroll__list { grid-auto-columns: 84%; }
}

/* ============================================================
   বই — শেলফ (locked)
   ============================================================ */
.shelf__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shelf__p s {
  margin-left: 7px; font-size: .84em; color: var(--ink-3); font-weight: 400;
}
.sec--shelf {
  background: linear-gradient(180deg, #FBF6EC 0%, var(--cream) 100%);
}
.shelf { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 40px); list-style: none; margin: 0; padding: 0; }
.shelf__item { display: block; position: relative; padding-bottom: 26px; }
.shelf__item::after {
  content: ''; position: absolute; left: -6%; right: -6%; bottom: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(196,158,95,.45), transparent);
}
.shelf__cover {
  display: block; aspect-ratio: 2/3; border-radius: 4px 10px 10px 4px; overflow: hidden;
  background: var(--mint-2);
  box-shadow: 0 18px 34px -18px rgba(6,51,45,.5), inset 7px 0 0 -5px rgba(255,255,255,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.shelf__item:hover .shelf__cover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 28px 44px -20px rgba(6,51,45,.55); }
.shelf__t { display: block; margin-top: 16px; font-size: 16.5px; font-weight: 700; line-height: 1.5; }
.shelf__item:hover .shelf__t { color: var(--deep); }
.shelf__s { display: block; margin-top: 5px; font-style: normal; font-size: 13px; line-height: 1.6; color: var(--ink-3); }
.shelf__p { display: block; margin-top: 9px; font-size: 15.5px; font-weight: 700; color: var(--emerald); }
/* ── responsive ── */
@media (max-width: 980px) {
.shelf { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
.shelf { gap: 18px; }  .shelf__t { font-size: 15px; }
}

/* ============================================================
   প্রবন্ধ — shared
   ============================================================ */
.sec--art { background: var(--paper); }
.maglead__m i, .magrow__body em i { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
/* ============================================================
   প্রবন্ধ — ম্যাগাজিন (locked)
   ============================================================ */
.magsplit { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.maglead { display: block; }
.maglead__thumb { display: block; aspect-ratio: 16/9.5; border-radius: 22px; overflow: hidden; background: var(--mint-2); }
.maglead__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.maglead:hover .maglead__thumb img { transform: scale(1.04); }
.maglead__body { display: block; padding-top: 18px; }
.maglead__tag {
  display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--emerald);
  padding: 5px 12px; border-radius: var(--r-pill); background: var(--mint-2);
}
.maglead__t { display: block; margin-top: 13px; font-size: clamp(20px, 2vw, 26px); font-weight: 700; line-height: 1.5; }
.maglead:hover .maglead__t { color: var(--deep); }
.maglead__d { display: block; margin-top: 11px; font-size: 15px; line-height: 1.85; color: var(--ink-2); }
.maglead__m { display: flex; align-items: center; gap: 9px; margin-top: 12px; font-style: normal; font-size: 13px; color: var(--ink-3); }
.magrows { list-style: none; margin: 0; padding: 0; }
.magrows li + li { border-top: 1px solid var(--line); }
.magrows a { display: flex; align-items: center; gap: 16px; padding: 16px 0; }
/* height:auto is required — the img's height="" attribute is a presentational
   hint and still wins if CSS only sets width */
.magrows img {
  width: 104px; height: auto; aspect-ratio: 16/11;
  border-radius: 14px; object-fit: cover; flex-shrink: 0; order: 2;
}
.magrow__body { min-width: 0; flex: 1; }
.magrow__body .magrow__tag { font-size: 12px; font-weight: 700; color: var(--emerald); }
.magrow__body b { display: block; margin-top: 7px; font-size: 15.5px; font-weight: 700; line-height: 1.6; }
.magrows a:hover b { color: var(--deep); }
.magrow__body em { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-style: normal; font-size: 12.5px; color: var(--ink-3); }
/* ── responsive ── */
@media (max-width: 1080px) {
.magsplit { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
.magrows img { width: 88px; }
}

/* ============================================================
   ইসলাহী মজলিস — কোলাজ (locked)
   ============================================================ */
.mtag {
  display: inline-flex; align-items: center;
  padding: 6px 15px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700; color: var(--emerald);
  background: var(--paper); border: 1px solid var(--mint);
}
.mtitle {
  margin: 16px 0 0; font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; line-height: 1.38; letter-spacing: -.4px;
}
.mdesc { margin: 14px 0 0; font-size: 15.5px; line-height: 1.9; color: var(--ink-2); max-width: 48ch; }
.sec--majlis {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #EAF4F0 0%, var(--mint-2) 45%, var(--cream) 100%);
}
.majlis__orn { position: absolute; top: -40px; right: -46px; width: 240px; opacity: .45; pointer-events: none; }
.mcollage { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.mcollage__art { position: relative; padding-bottom: 52px; padding-right: 46px; }
.mcollage__a, .mcollage__b { margin: 0; overflow: hidden; background: var(--mint); }
.mcollage__a {
  aspect-ratio: 4/3.1; border-radius: 28px;
  box-shadow: 0 34px 64px -30px rgba(6,51,45,.5);
}
.mcollage__b {
  position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 3/4;
  border-radius: 24px; border: 6px solid var(--cream);
  box-shadow: 0 26px 50px -24px rgba(6,51,45,.55);
}
.mcollage__a img, .mcollage__b img { width: 100%; height: 100%; object-fit: cover; }
.mcollage__badge {
  position: absolute; left: 20px; top: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700; color: var(--deep);
  background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm);
}
.mcollage__badge i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sand);
  animation: pulse 2s var(--ease) infinite;
}
.msched { list-style: none; margin: 24px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.msched li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--mint);
}
.msched li:first-child { border-top: 1px solid var(--mint); }
.msched span { flex: 0 0 72px; font-size: 13px; color: var(--ink-3); }
.msched b { font-size: 15.5px; font-weight: 700; color: var(--ink); }
/* ── responsive ── */
@media (max-width: 1080px) {
.mcollage { grid-template-columns: 1fr; }  .mcollage__art { padding-right: 32px; padding-bottom: 40px; }
}

@media (max-width: 560px) {
.mcollage__b { width: 52%; }
}

/* ============================================================
   নারীদের পাতা — shared
   ============================================================ */
.wgc__m i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .5; }
.sec--wgrid { background: linear-gradient(180deg, #F7EFF1 0%, var(--cream) 100%); }
.wgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 16px; list-style: none; margin: 0; padding: 0; }
.wgc { display: flex; flex-direction: column; height: 100%; }
.wgc__thumb { position: relative; display: block; aspect-ratio: 16/10.5; border-radius: 20px; overflow: hidden; background: var(--mint-2); }
.wgc__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.wgc:hover .wgc__thumb img { transform: scale(1.05); }
.wgc__tag {
  position: absolute; left: 12px; bottom: 12px;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; color: var(--deep);
  background: rgba(255,255,255,.93); backdrop-filter: blur(6px);
}
.wgc__body { display: flex; flex-direction: column; gap: 8px; padding-top: 15px; flex: 1; }
.wgc__t { font-size: 16.5px; font-weight: 700; line-height: 1.6; }
.wgc:hover .wgc__t { color: var(--deep); }
.wgc__d {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2;
  overflow: hidden; font-size: 14px; line-height: 1.8; color: var(--ink-2);
}
.wgc__m { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px; font-style: normal; font-size: 12.5px; color: var(--ink-3); }
/* ── responsive ── */
@media (max-width: 1080px) {
.wgrid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   বিজ্ঞাপন স্লট
   Deliberately off-brand (Klasio blue) and labelled, so paid
   placement is never mistaken for editorial content.
   ============================================================ */
.sec--ads { background: var(--cream); padding-block: clamp(26px, 3vw, 40px); }
.ads { display: grid; gap: clamp(16px, 2.5vw, 26px); align-items: stretch; }
.ads--wide { grid-template-columns: 1fr; }
.klasio { position: relative; }
.klasio__label {
  position: absolute; top: -9px; left: 18px; z-index: 2;
  padding: 3px 10px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  color: var(--ink-3); background: var(--cream); border: 1px solid var(--line);
}
.klasio__inner {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  height: 100%; padding: 30px 26px 26px; border-radius: 26px;
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(60,135,252,.55), transparent 65%),
    linear-gradient(160deg, #2651EB 0%, #01096B 100%);
  color: #fff;
}
.klasio__inner::after {
  content: ''; position: absolute; right: -60px; bottom: -70px;
  width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.08);
}
.klasio__logo { width: 118px; height: auto; filter: brightness(0) invert(1); position: relative; }
.klasio__t { position: relative; font-size: 20px; font-weight: 700; line-height: 1.5; }
.klasio__d { position: relative; margin: 0; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.78); }
.klasio__cta {
  position: relative; margin-top: auto;
  display: inline-flex; align-items: center; padding: 12px 22px;
  border-radius: var(--r-pill); font-size: 14.5px; font-weight: 700;
  color: #01096B; background: #fff;
  transition: transform .22s var(--ease);
}
.klasio__cta:hover { transform: translateY(-2px); }
.klasio--wide .klasio__inner {
  flex-direction: row; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 16px 20px 16px 26px; border-radius: 18px;
}
.klasio--wide .klasio__logo { width: 92px; }
.klasio--wide .klasio__t { flex: 1 1 300px; font-size: 16.5px; font-weight: 700; }
.klasio--wide .klasio__d { display: none; }
.klasio--wide .klasio__cta { margin-top: 0; padding: 9px 18px; font-size: 13.5px; }
.klasio--wide .klasio__inner::after { width: 150px; height: 150px; right: -45px; bottom: -60px; }
@media (max-width: 720px) {
.klasio--wide .klasio__inner { flex-direction: column; align-items: flex-start; padding: 26px; }  .klasio--wide .klasio__cta { margin-top: 4px; }
}

/* ============================================================
   নিউজলেটার
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.nl__t { margin: 14px 0 0; font-size: clamp(23px, 2.6vw, 34px); font-weight: 700; line-height: 1.42; letter-spacing: -.3px; }
.nl__d { margin: 12px 0 0; font-size: 15.5px; line-height: 1.85; color: var(--ink-2); max-width: 46ch; }
.nl__note { margin: 12px 0 0; font-size: 12.5px; color: var(--ink-3); }
.nlform {
  display: flex; align-items: center; gap: 8px; margin-top: 22px;
  width: min(520px, 100%);
  padding: 6px 6px 6px 20px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.nlform:focus-within { border-color: var(--emerald-2); box-shadow: 0 16px 34px -18px rgba(19,120,108,.45); }
.nlform input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: none;
  font-size: 15.5px; padding-block: 12px;
}
.nlform input::placeholder { color: var(--ink-3); }
.nlform .btn { flex-shrink: 0; }
/* ── ১ প্যানেল ── */
.sec--nl { background: var(--cream); }
.nlpanel {
  display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(24px, 4vw, 52px);
  padding: clamp(30px, 4vw, 52px); border-radius: 32px;
  background: linear-gradient(150deg, #E6F3EF 0%, var(--mint-2) 55%, var(--paper) 100%);
  border: 1px solid var(--mint);
}
.nlpanel__art { width: min(263px, 100%); height: auto; justify-self: end; }
@media (max-width: 860px) {
.nlpanel { grid-template-columns: 1fr; }  .nlpanel__art { justify-self: start; width: 200px; }
}

@media (max-width: 620px) {
.nlform { flex-wrap: wrap; border-radius: 24px; padding: 12px; }  .nlform input { flex-basis: 100%; padding-inline: 8px; }  .nlform .btn { width: 100%; }
}


/* ============================================================
   ফুটার — shared
   ============================================================ */
.foot {
  position: relative; overflow: hidden; color: rgba(255,255,255,.72);
  padding-block: clamp(48px, 6vw, 78px) 0;
  background:
    radial-gradient(58% 52% at 12% 0%, rgba(26,147,132,.26), transparent 62%),
    linear-gradient(168deg, #0A4A42 0%, #073329 52%, #051F1A 100%);
}
.foot .wrap { position: relative; }

.fsocial { display: flex; gap: 8px; color: rgba(255,255,255,.85); }
.fsocial a { display: block; transition: color .2s var(--ease), transform .2s var(--ease); }
.fsocial a:hover { color: #fff; transform: translateY(-2px); }
.fsocial svg { width: 30px; height: 30px; }

.fcols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 46px); }
.fcol__k {
  display: block; margin-bottom: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--sand);
}
.fcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.fcol a { font-size: 14.5px; transition: color .2s var(--ease); }
.fcol a:hover { color: #fff; }

.fbottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13.5px;
}
.fbottom p { margin: 0; }
.fbottom__nav { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.fbottom__nav a { transition: color .2s var(--ease); }
.fbottom__nav a:hover { color: var(--sand-2); }

/* ============================================================
   ১ — জ্যোতি
   ============================================================ */
.foot--mark { padding-bottom: clamp(30px, 4vw, 52px); }
.fmark__top {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 80px); padding-bottom: clamp(34px, 4.5vw, 56px);
}
.fmark__say p { margin: 0 0 26px; font-size: 15.5px; line-height: 1.85; max-width: 34ch; }
.fmark__art {
  display: block; width: 100%; height: auto;
  margin-top: clamp(28px, 3.4vw, 48px);
  opacity: .26; pointer-events: none;
}

/* ── responsive ── */
@media (max-width: 900px) {
  .fmark__top { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .fcols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 20px; }
  .fbottom { flex-direction: column; align-items: flex-start; }
}
