
/* ══════════════════════════════════════════════════
   দেশেরা আলো — Main Stylesheet
   Full-Width, Professional, Mobile Responsive
══════════════════════════════════════════════════ */

:root {
  --red:  #cc0000;
  --dred: #a80000;
  --bd:   #e0e0e0;
  --tx:   #1a1a1a;
  --bg:   #f6f6f6;
  --sb:   290px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Hind Siliguri', 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  color: var(--tx);
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

/* FULL-WIDTH WRAPPER — no side gaps */
.site-body {
  width: 100%;
  background: #fff;
}

/* INNER CONTENT CONSTRAINT — only for header/nav/footer bars */
.inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOP UTILITY BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.topbar-wrap {
  width: 100%;
  background: linear-gradient(135deg, var(--red) 0%, var(--dred) 100%);
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  color: #fff;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-date {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 500; opacity: .92;
}
.topbar-date i { font-size: 11px; opacity: .8; }
.topbar-weather {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; opacity: .75;
  border-left: 1px solid rgba(255,255,255,.3);
  padding-left: 12px;
}
.topbar-right { display: flex; align-items: center; gap: 4px; }
.top-divider { width: 1px; height: 14px; background: rgba(255,255,255,.3); margin: 0 4px; }
.topbar-social { display: flex; align-items: center; gap: 2px; }
.topbar-social a {
  color: rgba(255,255,255,.85); font-size: 13px;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px; transition: all .2s;
}
.topbar-social a:hover { color: #fff; background: rgba(255,255,255,.18); }
.srch-btn {
  color: rgba(255,255,255,.85); font-size: 14px;
  padding: 4px 8px; border-radius: 4px;
  transition: all .2s; cursor: pointer;
  border: none; background: transparent;
}
.srch-btn:hover { color: #fff; background: rgba(255,255,255,.15); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAIN HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hdr-wrap {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  min-height: 100px;
}

/* LOGO */
.logo-a { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.logo-row { display: flex; align-items: center; }
.logo-main-text {
  font-size: 36px; font-weight: 900; font-style: italic; line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--red), #e53935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 12px;
}
.logo-accent {
  width: 5px; height: 36px;
  background: linear-gradient(180deg, var(--red), #e53935);
  border-radius: 3px; margin: 0 5px; flex-shrink: 0;
}
.logo-sub { font-size: 36px; font-weight: 900; line-height: 1; letter-spacing: -1.5px; color: #111; }
.ltag { font-size: 11px; color: #aaa; letter-spacing: .5px; }

/* HEADER RIGHT */
.hdr-right { display: flex; align-items: center; justify-content: flex-end; flex-shrink: 0; }

/* DESKTOP CENTER SEARCH */
.hdr-search-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.hdr-search-center form {
  display: flex;
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--bd);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  transition: border-color .2s;
}
.hdr-search-center form:focus-within { border-color: var(--red); }
.hdr-search-center input {
  flex: 1; border: none; padding: 11px 18px;
  font-size: 14px; outline: none;
  background: #f9f9f9; color: var(--tx);
  font-family: inherit;
}
.hdr-search-center button {
  background: var(--red); color: #fff;
  border: none; padding: 11px 22px;
  cursor: pointer; font-size: 15px;
  transition: background .2s; flex-shrink: 0;
}
.hdr-search-center button:hover { background: var(--dred); }


/* SEARCH */
.srch {
  display: flex;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  border: 1.5px solid var(--bd);
  transition: border-color .2s;
}
.srch:focus-within { border-color: var(--red); }
.srch input {
  padding: 9px 14px; font-size: 14px;
  outline: none; width: 240px;
  border: none; background: #f9f9f9; color: var(--tx);
  font-family: inherit;
}
.srch button {
  background: var(--red); color: #fff;
  border: none; padding: 9px 18px;
  cursor: pointer; font-size: 14px;
  transition: background .2s; flex-shrink: 0;
}
.srch button:hover { background: var(--dred); }

/* MOBILE SEARCH */
.mob-srch { display: none; width: 100%; background: #f5f5f5; border-bottom: 1px solid var(--bd); }
.mob-srch .inner { padding: 8px 16px; }
.mob-srch form { display: flex; border-radius: 6px; overflow: hidden; }
.mob-srch input {
  flex: 1; border: 1.5px solid var(--bd); border-right: none;
  padding: 10px 14px; font-size: 14px; outline: none;
  background: #fff; border-radius: 6px 0 0 6px; font-family: inherit;
}
.mob-srch button {
  background: var(--red); color: #fff;
  border: none; padding: 10px 18px;
  font-size: 14px; cursor: pointer;
  border-radius: 0 6px 6px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STICKY NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-wrap {
  width: 100%; background: #fff;
  position: sticky; top: 0; z-index: 9500;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.nav-inner-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff5252);
}
.nav-c { display: flex; align-items: center; }
.hmbgr {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer;
  padding: 10px 14px; color: var(--tx);
  transition: transform .25s ease; flex-shrink: 0;
}
.hmbgr.active { transform: rotate(90deg); }

/* NAV LINKS */
.nm { display: flex; list-style: none; }
.nm > li { position: relative; }
.nm > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 13px;
  font-size: 14px; font-weight: 700; color: #222;
  white-space: nowrap; transition: all .18s;
  position: relative;
}
.nm > li > a::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px; background: var(--red);
  transition: all .22s;
}
.nm > li > a.act { color: var(--red); }
.nm > li > a.act::after { left: 0; right: 0; }
.nm > li:hover > a { color: var(--red); }
.nm > li:hover > a::after { left: 0; right: 0; }

/* DROPDOWN */
.nm > li .dd {
  display: none; position: absolute;
  top: 100%; left: 0;
  background: #fff;
  border-top: 3px solid var(--red);
  min-width: 190px; z-index: 9999;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  border-radius: 0 0 8px 8px; overflow: hidden;
  animation: ddFade .18s ease;
}
@keyframes ddFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nm > li:hover .dd { display: block; }
.nm > li .dd li { list-style: none; }
.nm > li .dd li a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; font-size: 13.5px; color: #333;
  border-bottom: 1px solid #f5f5f5; transition: all .15s; font-weight: 500;
}
.nm > li .dd li:last-child a { border: none; }
.nm > li .dd li a::before { content: '›'; color: var(--red); font-size: 17px; line-height: 1; }
.nm > li .dd li a:hover { background: var(--red); color: #fff; padding-left: 22px; }
.nm > li .dd li a:hover::before { color: #fff; }

.marr { font-size: 10px; opacity: .7; }
.nav-mob-logo { display: none; align-items: center; gap: 3px; text-decoration: none; margin: 0 auto; }
.nml-aj { color: var(--red); font-size: 20px; font-weight: 900; font-style: italic; line-height: 1; }
.nml-sq { width: 5px; height: 20px; background: var(--red); display: inline-block; border-radius: 2px; margin: 0 3px; }
.nml-di { color: #111; font-size: 20px; font-weight: 900; line-height: 1; }
.mob-close-li { display: none; }
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 8000;
  opacity: 0; transition: opacity .3s ease;
}
.nav-overlay.show { display: block; }
.nav-overlay.visible { opacity: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TICKER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ticker-wrap { width: 100%; background: #fff; border-bottom: 1px solid var(--bd); }
.ticker { display: flex; align-items: center; overflow: hidden; height: 34px; }
.tlbl {
  background: var(--red); color: #fff;
  padding: 0 14px; font-weight: 700; font-size: 14px;
  white-space: nowrap; flex-shrink: 0;
  height: 34px; display: flex; align-items: center;
}
.ttrack { overflow: hidden; flex: 1; }
.tscroll { white-space: nowrap; animation: tick 45s linear infinite; font-size: 14px; padding: 0 12px; }
@keyframes tick { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE LAYOUT — Full Width
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  align-items: flex-start;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}
.main { flex: 1; min-width: 0; }
.side { width: var(--sb); flex-shrink: 0; }

/* RESPONSIVE LAYOUT GRIDS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.grid-2-thumbnail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* SEC HEADINGS */
.sh { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--red); margin-bottom: 12px; }
.sl { background: var(--red); color: #fff; font-size: 14px; font-weight: 700; padding: 5px 14px; display: inline-block; }
.sma { color: var(--red); font-size: 13px; font-weight: 700; border-left: 2px solid var(--red); padding-left: 9px; }
.sma:hover { text-decoration: underline; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO + TAB
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.htrow { display: flex; gap: 13px; margin-bottom: 18px; }
.hero-wrap { flex: 1; min-width: 0; }
.hero { position: relative; overflow: hidden; border-radius: 4px; }
.hero img { height: 260px; width: 100%; }
.hcap { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.65); color: #fff; padding: 10px 14px; font-size: 16px; font-weight: 700; line-height: 1.4; }
.hbtn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; padding: 6px 12px; font-size: 19px; cursor: pointer; z-index: 2; transition: background .2s; }
.hbtn:hover { background: var(--red); }
.hbtn.pv { left: 0; } .hbtn.nx { right: 0; }
.tsid { width: 230px; flex-shrink: 0; }
.tab-btns { display: flex; border-bottom: 2px solid var(--red); }
.tbtn { flex: 1; text-align: center; padding: 8px 4px; font-size: 13px; font-weight: 700; background: #eee; border: none; cursor: pointer; border-right: 1px solid var(--bd); color: #555; transition: background .2s; }
.tbtn.on { background: var(--red); color: #fff; }
.tbody { overflow-y: auto; max-height: 220px; }
.tbody::-webkit-scrollbar { width: 3px; } .tbody::-webkit-scrollbar-thumb { background: var(--red); }
.ti { display: flex; gap: 8px; padding: 8px 9px; border-bottom: 1px solid var(--bd); color: var(--tx); }
.ti:hover { background: var(--bg); }
.ti img { width: 60px; height: 45px; flex-shrink: 0; }
.ti p { font-size: 13px; margin: 0; line-height: 1.4; }

/* MOBILE BREAKING */
.mob-brk { display: none; background: #fff; border: 1px solid var(--bd); margin-bottom: 16px; border-radius: 4px; overflow: hidden; }
.mob-brk-hd { background: var(--red); color: #fff; padding: 10px 14px; font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.mob-brk-dot { width: 9px; height: 9px; background: #fff; border-radius: 50%; flex-shrink: 0; animation: blink 1s infinite; }
.mob-brk-list a { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border-bottom: 1px solid #f2f2f2; color: var(--tx); font-size: 14px; line-height: 1.5; transition: background .15s; }
.mob-brk-list a:last-child { border: none; }
.mob-brk-list a:hover { background: #fff5f5; color: var(--red); }
.mob-brk-list a img { width: 68px; height: 51px; flex-shrink: 0; }

/* NEWS CARDS */
.nc { display: block; color: var(--tx); margin-bottom: 14px; position: relative; overflow: hidden; }
.nc img { height: 155px; transition: transform .3s; }
.nc:hover img { transform: scale(1.04); }
.nc .ovc { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.65); color: #fff; padding: 8px 10px; font-size: 14px; font-weight: 700; line-height: 1.4; }
.limg { height: 200px; }
.lt { font-size: 17px; font-weight: 700; margin: 8px 0 6px; line-height: 1.5; }
.lp { font-size: 13px; color: #555; line-height: 1.7; }
.rm { color: var(--red); font-size: 13px; font-weight: 700; }
.rm:hover { text-decoration: underline; }
.sml a { display: flex; gap: 9px; padding: 7px 0; border-bottom: 1px solid var(--bd); color: var(--tx); font-size: 13px; line-height: 1.4; align-items: flex-start; }
.sml a img { width: 68px; height: 51px; flex-shrink: 0; }
.sml a:hover { color: var(--red); }
.ov { position: relative; display: block; overflow: hidden; }
.ov img { transition: transform .3s; }
.ov:hover img { transform: scale(1.04); }
.ovc { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.64); color: #fff; padding: 8px 10px; font-size: 14px; font-weight: 700; line-height: 1.4; }
.b2 { display: block; color: var(--tx); }
.b2 img { height: 115px; }
.b2 p { font-size: 13px; font-weight: 600; margin: 5px 0 0; line-height: 1.4; }
.b2:hover p { color: var(--red); }

/* GALLERY */
.galw { position: relative; overflow: hidden; border-radius: 4px; }
.gimg { display: none; } .gimg.on { display: block; }
.gimg img { height: 220px; }
.gcap { background: rgba(0,0,0,.55); color: #fff; padding: 7px 11px; font-size: 14px; font-weight: 600; }
.gbtn { position: absolute; top: 44%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; padding: 5px 10px; font-size: 16px; cursor: pointer; z-index: 3; }
.gbtn:hover { background: var(--red); }
.gbtn.pv { left: 0; } .gbtn.nx { right: 0; }
.pvl { background: var(--red); color: #fff; font-weight: 700; font-size: 15px; padding: 6px 15px; display: inline-block; margin-bottom: 10px; }

/* YOUTUBE */
.yt-wrap { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; overflow: hidden; cursor: pointer; }
.yt-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s, opacity .3s; }
.yt-wrap:hover img { transform: scale(1.04); opacity: .85; }
.yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(204,0,0,.9); color: #fff; border: none; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; transition: all .2s; box-shadow: 0 2px 12px rgba(0,0,0,.4); z-index: 2; padding-left: 4px; }
.yt-play:hover { background: var(--red); transform: translate(-50%,-50%) scale(1.12); }
.yt-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vtt { font-size: 12px; color: #444; margin-top: 5px; line-height: 1.4; }

/* SIDEBAR COMPONENTS */
.brk { background: #fff; border: 1px solid var(--bd); margin-bottom: 16px; border-radius: 4px; overflow: hidden; }
.brk-hd { background: var(--red); color: #fff; padding: 9px 13px; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.brk-dot { width: 9px; height: 9px; background: #fff; border-radius: 50%; animation: blink 1s infinite; flex-shrink: 0; }
.brk-list a { display: flex; align-items: flex-start; gap: 9px; padding: 9px 12px; border-bottom: 1px solid #f2f2f2; color: var(--tx); font-size: 13px; line-height: 1.5; transition: background .15s; }
.brk-list a:last-child { border: none; }
.brk-list a:hover { background: #fff5f5; color: var(--red); }
.brk-list a img { width: 64px; height: 48px; flex-shrink: 0; }
.sa { display: block; color: var(--tx); margin-bottom: 12px; }
.sa img { height: 160px; }
.sa .st { font-size: 15px; font-weight: 700; margin: 7px 0 5px; line-height: 1.5; }
.sa .sp2 { font-size: 13px; color: #555; line-height: 1.65; }
.sa:hover .st { color: var(--red); }
.stl a { display: flex; align-items: flex-start; gap: 7px; padding: 8px 0; border-bottom: 1px solid var(--bd); color: var(--tx); font-size: 13px; font-weight: 600; line-height: 1.4; }
.stl a::before { content: '›'; color: var(--red); font-size: 17px; flex-shrink: 0; line-height: 1.3; }
.stl a:hover { color: var(--red); }
.ssml a { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--bd); color: var(--tx); font-size: 13px; line-height: 1.4; }
.ssml a img { width: 62px; height: 47px; flex-shrink: 0; }
.ssml a:hover { color: var(--red); }
.lkbox { border: 1px solid var(--bd); background: #fafafa; border-radius: 4px; overflow: hidden; }
.lkhd { background: #f2f2f2; padding: 8px 12px; font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--bd); }
.lkbody { padding: 12px; }
.lkpr { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--bd); }
.lkico { width: 46px; height: 46px; background: #e8e8e8; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #aaa; flex-shrink: 0; border: 1px solid var(--bd); }
.lknm { font-size: 14px; font-weight: 700; } .lksb { font-size: 12px; color: #555; }
.lkps { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.lkav { width: 34px; height: 34px; background: #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.lktx { font-size: 12px; color: #555; line-height: 1.8; }
.adbox { background: linear-gradient(135deg,#f9f9f9,#eee); border: 2px dashed #ccc; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 13px; text-align: center; width: 100%; border-radius: 4px; }
.mt { margin-top: 16px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROFESSIONAL FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: linear-gradient(180deg, #0f1923 0%, #090e14 100%);
  color: #b0bec5;
  margin-top: 32px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--dred), var(--red));
}

/* Footer Top */
.footer-top { padding: 40px 0 28px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

/* Footer Brand */
.footer-logo-row { display: flex; align-items: center; margin-bottom: 4px; }
.footer-logo-text {
  font-size: 30px; font-weight: 900; font-style: italic; line-height: 1.2;
  background: linear-gradient(135deg, var(--red), var(--dred));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 10px;
}
.footer-logo-bar { width: 5px; height: 30px; background: linear-gradient(180deg, var(--red), var(--dred)); border-radius: 3px; margin: 0 5px; }
.footer-logo-sub { font-size: 30px; font-weight: 900; line-height: 1; color: #fff; }
.footer-tagline { font-size: 11px; color: #455a64; letter-spacing: .5px; margin-bottom: 14px; }
.footer-about { font-size: 13px; color: #78909c; line-height: 1.85; margin-bottom: 18px; }
.footer-social-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #546e7a; margin-bottom: 10px; }
.footer-social-links { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.footer-social-links a {
  width: 34px; height: 34px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  background: rgba(255,255,255,.05); color: #90a4ae;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .22s;
}
.footer-social-links a:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(204,0,0,.4); }

/* Footer Column Titles */
.footer-col-title {
  font-size: 14px; font-weight: 700; color: #eceff1;
  margin-bottom: 16px; padding-bottom: 9px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { padding: 0; margin: 0; }
.footer-links li { margin-bottom: 1px; }
.footer-links li a {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
  font-size: 13.5px; color: #78909c;
  transition: all .18s;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-links li:last-child a { border: none; }
.footer-links li a::before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; transition: transform .2s; }
.footer-links li a:hover { color: #fff; padding-left: 5px; }
.footer-links li a:hover::before { transform: scale(1.5); }

/* Footer Contact */
.footer-contact-list { padding: 0; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 13px; color: #78909c; line-height: 1.6;
}
.footer-contact-list li:last-child { border: none; }
.footer-contact-list li .ico {
  width: 30px; height: 30px;
  background: rgba(204,0,0,.12);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--red); flex-shrink: 0; margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom { padding: 14px 0; background: rgba(0,0,0,.28); }
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-copyright { font-size: 12.5px; color: #455a64; }
.footer-copyright strong { color: #78909c; }
.footer-dev { font-size: 12px; color: #37474f; }
.footer-dev span { color: #f5a623; font-weight: 700; }
.footer-policy-links { display: flex; align-items: center; gap: 14px; }
.footer-policy-links a { font-size: 12px; color: #455a64; transition: color .18s; }
.footer-policy-links a:hover { color: #90a4ae; }
.footer-divider { width: 1px; height: 12px; background: rgba(255,255,255,.1); }

/* BACK TO TOP */
#btop {
  position: fixed; bottom: 22px; right: 22px;
  background: linear-gradient(135deg, var(--red), var(--dred));
  color: #fff; border: none; width: 42px; height: 42px;
  border-radius: 10px; font-size: 16px; cursor: pointer;
  display: none; z-index: 9999;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(204,0,0,.4); transition: all .22s;
}
#btop:hover { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(204,0,0,.5); }
#btop.show { display: flex; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ARTICLE / DETAILS PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.bcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #777; margin-bottom: 14px; flex-wrap: wrap; }
.bcrumb a { color: var(--red); font-weight: 600; }
.bcrumb a:hover { text-decoration: underline; }
.bcrumb .sep { color: #bbb; }
.art-title { font-size: 22px; font-weight: 800; line-height: 1.45; color: #111; margin-bottom: 12px; }
.art-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 8px 0; border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); margin-bottom: 14px; }
.art-reporter { display: flex; align-items: center; gap: 10px; }
.art-reporter-avatar { width: 36px; height: 36px; border-radius: 50%; background: #ddd; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #888; flex-shrink: 0; overflow: hidden; }
.art-reporter-info .name { font-size: 13px; font-weight: 700; color: #222; }
.art-reporter-info .date { font-size: 12px; color: #888; }
.art-share { display: flex; align-items: center; gap: 1px; }
.art-share span { font-size: 12px; color: #888; margin-right: 5px; font-weight: 600; }
.art-share a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 4px; font-size: 14px; color: #fff; transition: opacity .2s; }
.art-share a:hover { opacity: .85; }
.sh-fb { background: #1877f2; } .sh-tw { background: #1da1f2; } .sh-wa { background: #25d366; } .sh-li { background: #0077b5; }
.art-img-wrap { position: relative; margin-bottom: 6px; }
.art-img-wrap img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 4px; }
.art-img-cap { font-size: 12px; color: #777; margin-bottom: 14px; font-style: italic; padding: 4px 0; }
.art-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 3px; margin-bottom: 10px; }
.art-body { font-size: 15px; line-height: 1.85; color: #333; }
.art-body p { margin-bottom: 14px; }
.art-body strong { color: #111; }
.bot-share { display: flex; align-items: center; gap: 6px; padding: 14px 0; border-top: 2px solid var(--bd); border-bottom: 2px solid var(--bd); margin-bottom: 20px; flex-wrap: wrap; }
.bot-share .lbl { font-size: 13px; font-weight: 700; color: #555; margin-right: 4px; }
.bot-share a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 4px; font-size: 15px; color: #fff; }
.bot-share a:hover { opacity: .85; }
.more-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 10px; }
.mg-card { display: block; color: var(--tx); }
.mg-card img { width: 100%; height: 120px; object-fit: cover; margin-bottom: 6px; border-radius: 3px; }
.mg-card .mg-title { font-size: 13px; font-weight: 600; line-height: 1.4; }
.mg-card:hover .mg-title { color: var(--red); }
.mg-card .mg-date { font-size: 11px; color: #999; margin-top: 3px; }
.adbox-side { border: 2px solid var(--red); background: #fff5f5; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 12px; text-align: center; margin-bottom: 18px; border-radius: 4px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .15; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — TABLET 960px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width: 960px) {
  .page { flex-direction: column; gap: 12px; }
  .main, .side { width: 100%; }
  :root { --sb: 100%; }
  .srch { display: none; }
  .mob-srch { display: block; }
  .side .brk { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .topbar-weather { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — MOBILE 768px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width: 768px) {
  .hdr-wrap {
    position: sticky !important;
    top: 0 !important;
    z-index: 9500 !important;
  }
  .nav-overlay {
    z-index: 99998 !important;
  }
  .nav-mob-logo { display: none !important; }
  .mob-close-li { display: block; }
  .hmbgr {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--tx);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
  }
  .hdr-right {
    display: none !important;
  }
  .hdr-search-center {
    display: none !important;
  }
  .nav-wrap {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    position: static !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .nav-inner-bar {
    display: none !important;
  }
  .nav-c {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .logo-main-text, .logo-sub { font-size: 26px; }
  .logo-accent { height: 26px; }
  .htrow { flex-direction: column; gap: 10px; }
  .hero-wrap { width: 100%; }
  .tsid { width: 100%; }
  .hero img { height: 220px; }
  .tbody { max-height: 230px; }
  .mob-brk { display: block; }

  .grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-2-thumbnail { grid-template-columns: 1fr; gap: 12px; }
  .video-grid { grid-template-columns: 1fr; gap: 12px; }

  /* NAV DRAWER */
  .nm {
    display: flex !important;
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 82vw; max-width: 310px;
    background: #fff; flex-direction: column;
    overflow-y: auto; overflow-x: hidden;
    z-index: 99999 !important;
    box-shadow: 5px 0 30px rgba(0,0,0,.25);
    border-right: 3px solid var(--red);
    transform: translateX(-115%);
    transition: transform .33s cubic-bezier(.4,0,.2,1);
  }
  .nm.open { transform: translateX(0); }
  .mob-close-li { list-style: none; }
  .mob-close-li button {
    width: 100%; background: linear-gradient(135deg, var(--red), var(--dred));
    color: #fff; border: none; padding: 16px 20px;
    font-size: 16px; font-weight: 700; text-align: left;
    cursor: pointer; display: flex; align-items: center; gap: 10px;
  }
  .nm > li > a { padding: 14px 20px; border-bottom: 1px solid #efefef; font-size: 15px; font-weight: 600; color: #222; display: flex; align-items: center; }
  .nm > li > a::after { display: none; }
  .nm > li > a:hover { background: #fff5f5; color: var(--red); }
  .nm > li .dd { position: static !important; box-shadow: none !important; border: none !important; border-left: 3px solid var(--red) !important; background: #f8f8f8; max-height: 0; overflow: hidden; transition: max-height .32s ease; display: block !important; border-radius: 0 !important; animation: none !important; }
  .nm > li:hover .dd { max-height: 0; }
  .nm > li.mop .dd { max-height: 400px !important; }
  .nm > li.mop > a { background: #fff5f5; color: var(--red); }
  .nm > li .dd li a { padding: 11px 32px; font-size: 14px; border-bottom: 1px solid #eee; color: #444; display: flex; align-items: center; gap: 8px; }
  .nm > li .dd li a:hover { background: var(--red); color: #fff; padding-left: 32px; }
  .marr { margin-left: auto; font-size: 13px; transition: transform .25s ease; }
  .nm > li.mop .marr { transform: rotate(180deg); }
  .art-title { font-size: 18px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — SMALL 600px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width: 600px) {
  .topbar-date { font-size: 11px; }
  .page { padding: 10px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2-thumbnail { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .nc img { height: 130px; }
  .limg { height: 170px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 7px; }
  .footer-policy-links { flex-wrap: wrap; gap: 8px; }
  .footer-top { padding: 28px 0 20px; }
  .more-grid { grid-template-columns: 1fr 1fr !important; }
  .art-title { font-size: 17px; }
  .ti img { width: 52px; height: 40px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — XSMALL 480px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width: 480px) {
  .logo-main-text, .logo-sub { font-size: 22px; }
  .logo-accent { height: 22px; }
  .footer-logo-text, .footer-logo-sub { font-size: 22px; }
  .footer-logo-bar { height: 22px; }
  .page { padding: 8px; }
  .hero img { height: 185px; }
  .topbar-social { display: none; }
  .art-meta { flex-direction: column; align-items: flex-start; }
  .more-grid { grid-template-columns: 1fr !important; }
}
