/*
Theme Name:  MultiMedia In Marathi
Theme URI:   https://multimediainmarathi.in
Author:      MultiMedia In Marathi
Author URI:  https://multimediainmarathi.in
Description: A bold, modern Marathi multimedia magazine theme. Inspired by Urban Observer. Features a cinematic dark design with saffron-red accents, category-based homepage sections, hero slider, breaking news ticker, and full Marathi language support. Perfect for Marathi cinema, OTT, web series, and entertainment news.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: multimediainmarathi
Tags: dark, magazine, marathi, cinema, ott, entertainment, blog, custom-logo, custom-menu, featured-images, full-width-template, translation-ready, rtl-language-support, footer-widgets, two-columns, three-columns
*/

/* ===========================================
   MULTIMEDIA IN MARATHI — MAIN THEME STYLES
   Magazine · Cinema · OTT · Marathi Culture
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Marathi:ital@0;1&family=Rajdhani:wght@400;500;600;700&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,600&family=Barlow:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --red:        #d4001a;
  --red-dark:   #9a0012;
  --red-light:  #ff1a30;
  --saffron:    #e07b20;
  --gold:       #c9922a;
  --gold-lt:    #f0b84a;
  --teal:       #0d7a72;
  --bg:         #0c0c10;
  --bg2:        #121218;
  --bg3:        #1a1a22;
  --bg4:        #202028;
  --card:       #16161e;
  --border:     #2a2a38;
  --border2:    #1e1e2a;
  --txt:        #ede9e0;
  --txt2:       #9a958a;
  --txt3:       #5a5650;
  --white:      #ffffff;
  --black:      #000000;

  --f-display:  'Barlow Condensed', 'Impact', sans-serif;
  --f-hindi:    'Tiro Devanagari Marathi', serif;
  --f-ui:       'Rajdhani', sans-serif;
  --f-body:     'Barlow', system-ui, sans-serif;
  --f-mono:     'JetBrains Mono', monospace;

  --max-w:      1320px;
  --gap:        24px;
  --header-h:   68px;
  --sidebar-w:  300px;
  --radius:     6px;
  --t:          0.25s ease;
  --t-slow:     0.5s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }

/* ── Container ── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px;  margin: 0 auto; padding: 0 20px; }
.container-lg { max-width: 1500px; margin: 0 auto; padding: 0 20px; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--f-display); font-weight: 700; line-height: 1.15; }
.marathi { font-family: var(--f-hindi); }
.ui-text  { font-family: var(--f-ui); }
.mono     { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Site Background Glow ── */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 40% at 15% 8%,  rgba(212,0,26,0.05) 0%,  transparent 55%),
    radial-gradient(ellipse 50% 30% at 85% 92%, rgba(201,146,42,0.04) 0%, transparent 55%);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
  padding: 6px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-date {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--txt3);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.topbar-social { display: flex; align-items: center; gap: 8px; }
.topbar-social a {
  width: 26px; height: 26px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--txt2);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.topbar-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ============================================================
   BREAKING NEWS TICKER
   ============================================================ */
.breaking-ticker {
  background: var(--red);
  padding: 0;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-wrap { display: flex; align-items: center; width: 100%; overflow: hidden; }
.ticker-tag {
  background: rgba(0,0,0,0.35);
  font-family: var(--f-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 16px;
  height: 36px;
  display: flex; align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 2px solid rgba(255,255,255,0.2);
}
.ticker-tag span { color: var(--gold-lt); margin-right: 6px; }
.ticker-track-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex; gap: 60px;
  animation: tickerRun 35s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--f-hindi);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.95);
}
.ticker-item::before { content: '▶'; margin-right: 8px; font-size: 0.55rem; opacity: 0.7; }
@keyframes tickerRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(12,12,16,0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.site-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--saffron) 40%, var(--gold) 70%, transparent 100%);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; gap: 24px;
}

/* Logo */
.site-branding { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo-img { height: 44px; width: auto; }
.site-name-wrap { display: flex; flex-direction: column; line-height: 1; }
.site-name {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--txt);
  text-transform: uppercase;
}
.site-name span { color: var(--red); }
.site-tagline {
  font-family: var(--f-hindi);
  font-size: 0.7rem;
  color: var(--txt3);
  letter-spacing: 0.05em;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--f-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--txt2);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a { color: var(--txt); background: rgba(212,0,26,0.1); }
.main-nav > li.current-menu-item > a { color: var(--red); }

/* Dropdown */
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.main-nav li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu li a {
  display: block; padding: 10px 16px;
  font-family: var(--f-ui); font-size: 0.82rem; font-weight: 500;
  color: var(--txt2); border-bottom: 1px solid var(--border2);
  transition: color var(--t), background var(--t);
}
.main-nav .sub-menu li:last-child a { border-bottom: none; }
.main-nav .sub-menu li a:hover { color: var(--txt); background: rgba(212,0,26,0.08); padding-left: 22px; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-search, .btn-menu {
  width: 38px; height: 38px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--txt2); font-size: 0.9rem;
  transition: all var(--t); cursor: pointer;
}
.btn-search:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn-subscribe {
  font-family: var(--f-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 8px 18px; border-radius: 3px;
  transition: background var(--t);
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--red-light); }
.btn-menu { display: none; }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(12,12,16,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-box { width: 100%; max-width: 700px; padding: 0 24px; }
.search-box input {
  width: 100%; background: transparent;
  border: none; border-bottom: 2px solid var(--red);
  font-family: var(--f-hindi); font-size: 2rem; color: var(--txt);
  padding: 16px 0; outline: none;
}
.search-box input::placeholder { color: var(--txt3); }
.search-close {
  position: absolute; top: 24px; right: 24px;
  color: var(--txt2); font-size: 1.5rem; cursor: pointer;
  transition: color var(--t);
}
.search-close:hover { color: var(--red); }

/* ============================================================
   HERO SECTION (Urban Observer style big feature)
   ============================================================ */
.hero-section { padding: 32px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

/* Main featured post */
.hero-main {
  grid-row: 1 / 3;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.hero-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.hero-main:hover img { transform: scale(1.04); }
.hero-main .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(12,12,16,0.1) 0%,
    rgba(12,12,16,0.3) 40%,
    rgba(12,12,16,0.92) 80%,
    rgba(12,12,16,0.99) 100%
  );
}
.hero-main .content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 32px;
}

/* Side posts */
.hero-side { position: relative; overflow: hidden; cursor: pointer; }
.hero-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.hero-side:hover img { transform: scale(1.05); }
.hero-side .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,12,16,0.95) 0%, rgba(12,12,16,0.3) 60%, transparent 100%);
}
.hero-side .content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px 20px;
}

/* ============================================================
   CATEGORY BADGE / TAG
   ============================================================ */
.cat-badge {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--red);
  padding: 3px 10px; border-radius: 2px;
  margin-bottom: 8px;
  transition: background var(--t);
}
.cat-badge:hover { background: var(--red-light); }
.cat-badge--saffron { background: var(--saffron); }
.cat-badge--gold    { background: var(--gold); color: var(--bg); }
.cat-badge--teal    { background: var(--teal); }
.cat-badge--dark    { background: var(--bg4); border: 1px solid var(--border); }

/* Post title styles */
.post-title {
  font-family: var(--f-display); font-weight: 700; line-height: 1.15;
  color: var(--txt);
  transition: color var(--t);
  display: block;
}
.post-title:hover { color: var(--gold-lt); }
.post-title--xl  { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.post-title--lg  { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.post-title--md  { font-size: clamp(1rem, 2vw, 1.3rem); }
.post-title--sm  { font-size: 0.95rem; line-height: 1.3; }
.post-title--marathi { font-family: var(--f-hindi); font-weight: 700; }

/* Post meta */
.post-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 0.65rem;
  color: var(--txt3); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 6px;
}
.post-meta a { color: var(--txt3); transition: color var(--t); }
.post-meta a:hover { color: var(--gold-lt); }
.post-meta .sep { opacity: 0.4; }
.post-excerpt {
  font-size: 0.875rem; color: var(--txt2); line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
}

/* ============================================================
   SECTION HEADING (Urban Observer style)
   ============================================================ */
.section-head {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-head::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 50px; height: 2px;
  background: var(--red);
}
.section-head__title {
  font-family: var(--f-display);
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--txt);
}
.section-head__title span { color: var(--red); }
.section-head__link {
  font-family: var(--f-mono); font-size: 0.62rem;
  color: var(--txt3); letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
  transition: color var(--t);
}
.section-head__link:hover { color: var(--gold-lt); }
.section-head__link::after { content: '→'; }

/* ============================================================
   POST CARDS
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--red), var(--saffron));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
  z-index: 2;
}
.card:hover { transform: translateY(-5px); border-color: var(--border); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.card:hover::before { transform: scaleX(1); }

.card__thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.card:hover .card__thumb img { transform: scale(1.06); }

.card__body { padding: 16px; }
.card__footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: space-between;
}

/* Reading time badge */
.read-time {
  font-family: var(--f-mono); font-size: 0.6rem;
  color: var(--txt3); letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 4px;
}
.read-time::before { content: '⏱'; font-size: 0.65rem; }

/* ============================================================
   HORIZONTAL LIST POST
   ============================================================ */
.hpost {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border2);
  transition: opacity var(--t);
}
.hpost:first-child { padding-top: 0; }
.hpost:last-child  { border-bottom: none; padding-bottom: 0; }
.hpost:hover { opacity: 0.82; }
.hpost__thumb { aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.hpost__num {
  font-family: var(--f-display); font-size: 2.2rem; font-weight: 800;
  color: var(--border); line-height: 1;
  flex-shrink: 0; width: 40px;
}

/* ============================================================
   MAIN CONTENT + SIDEBAR LAYOUT
   ============================================================ */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 40px;
  align-items: start;
  padding: 40px 0;
}

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-sticky { position: sticky; top: calc(var(--header-h) + 20px); }

.widget {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget__head {
  background: var(--bg3);
  border-bottom: 1px solid var(--border2);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  position: relative;
}
.widget__head::before {
  content: ''; position: absolute;
  bottom: -1px; left: 0; width: 40px; height: 2px;
  background: var(--red);
}
.widget__title {
  font-family: var(--f-display); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt);
}
.widget__body { padding: 16px; }

/* Popular posts numbered */
.popular-post {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border2);
  align-items: flex-start;
}
.popular-post:last-child { border-bottom: none; padding-bottom: 0; }
.popular-num {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 800;
  color: var(--border); line-height: 1; flex-shrink: 0; width: 28px;
}
.popular-post:first-child .popular-num { color: var(--red); }
.popular-post:nth-child(2) .popular-num { color: var(--saffron); }
.popular-post:nth-child(3) .popular-num { color: var(--gold); }

/* Newsletter widget */
.widget-newsletter { background: var(--bg3); }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input[type="email"] {
  background: var(--bg4); border: 1px solid var(--border);
  color: var(--txt); padding: 10px 14px;
  font-family: var(--f-body); font-size: 0.85rem;
  border-radius: 3px; outline: none;
  transition: border-color var(--t);
}
.newsletter-form input[type="email"]:focus { border-color: var(--red); }
.newsletter-form input::placeholder { color: var(--txt3); }
.newsletter-form button {
  background: var(--red); color: #fff;
  font-family: var(--f-ui); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px; border-radius: 3px;
  cursor: pointer; border: none;
  transition: background var(--t);
}
.newsletter-form button:hover { background: var(--red-light); }

/* Tags cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-item {
  font-family: var(--f-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--bg4); border: 1px solid var(--border);
  color: var(--txt2); padding: 4px 10px; border-radius: 2px;
  transition: all var(--t);
}
.tag-item:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ============================================================
   OTT PLATFORMS STRIP
   ============================================================ */
.ott-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 20px 0;
  margin: 32px 0;
}
.ott-strip-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.ott-label {
  font-family: var(--f-mono); font-size: 0.65rem;
  color: var(--txt3); letter-spacing: 0.12em;
  text-transform: uppercase; white-space: nowrap;
}
.ott-platforms { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ott-platform {
  font-family: var(--f-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--txt2);
  transition: all var(--t);
  white-space: nowrap;
}
.ott-platform:hover { border-color: var(--red); color: var(--txt); background: rgba(212,0,26,0.08); }
.ott-platform.netflix  { border-color: rgba(229,9,20,0.5);  color: #e50914; }
.ott-platform.zee5     { border-color: rgba(119,53,170,0.5); color: #7735AA; }
.ott-platform.prime    { border-color: rgba(0,168,225,0.5);  color: #00A8E1; }
.ott-platform.hotstar  { border-color: rgba(30,91,182,0.5);  color: #1E5BB6; }
.ott-platform.youtube  { border-color: rgba(255,0,0,0.5);    color: #FF0000; }
.ott-platform.mxplayer { border-color: rgba(0,120,215,0.5);  color: #0078D7; }

/* ============================================================
   REVIEW STARS
   ============================================================ */
.star-rating { display: flex; gap: 3px; align-items: center; }
.star-rating .star { color: var(--txt3); font-size: 0.75rem; }
.star-rating .star.filled { color: var(--gold-lt); }
.star-rating .score {
  font-family: var(--f-display); font-size: 0.85rem; font-weight: 700;
  color: var(--gold-lt); margin-left: 6px;
}

/* ============================================================
   VIDEO EMBED
   ============================================================ */
.video-wrap {
  position: relative; aspect-ratio: 16/9;
  background: var(--bg3); border-radius: var(--radius); overflow: hidden;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12,12,16,0.6);
  cursor: pointer; transition: background var(--t);
}
.video-overlay:hover { background: rgba(12,12,16,0.3); }
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: transform var(--t), background var(--t);
  box-shadow: 0 0 0 8px rgba(212,0,26,0.2);
}
.video-overlay:hover .play-btn { transform: scale(1.1); background: var(--red-light); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 32px 0;
}
.page-num {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-ui); font-size: 0.85rem; font-weight: 600;
  background: var(--card); border: 1px solid var(--border);
  color: var(--txt2); border-radius: 3px;
  transition: all var(--t);
}
.page-num:hover, .page-num.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-hero-wrap {
  position: relative; overflow: hidden;
  height: clamp(300px, 50vh, 520px);
  margin-bottom: 40px;
}
.post-hero-wrap img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-wrap .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, transparent 30%, rgba(12,12,16,0.98) 100%);
}
.post-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
}

.post-body {
  font-family: var(--f-body); font-size: 1.05rem;
  line-height: 1.85; color: var(--txt);
}
.post-body p  { margin-bottom: 1.4rem; }
.post-body h2 {
  font-family: var(--f-display); font-size: 1.6rem;
  margin: 2.5rem 0 1rem; color: var(--txt);
  padding-left: 14px; border-left: 3px solid var(--red);
}
.post-body h3 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--txt); }
.post-body blockquote {
  border-left: 3px solid var(--red);
  padding: 16px 24px;
  background: var(--bg3);
  margin: 24px 0;
  font-family: var(--f-hindi);
  font-style: italic; font-size: 1.1rem;
  color: var(--gold-lt); border-radius: 0 var(--radius) var(--radius) 0;
}
.post-body img { border-radius: var(--radius); margin: 24px 0; }
.post-body a { color: var(--red); border-bottom: 1px solid rgba(212,0,26,0.3); transition: border-color var(--t); }
.post-body a:hover { border-color: var(--red); }

/* Author box */
.author-box {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 20px; align-items: flex-start;
  margin: 40px 0;
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.author-name { font-family: var(--f-display); font-size: 1.1rem; letter-spacing: 0.04em; }
.author-bio  { font-size: 0.875rem; color: var(--txt2); margin-top: 6px; line-height: 1.6; }

/* Share buttons */
.share-bar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2);
  margin: 32px 0;
}
.share-label { font-family: var(--f-mono); font-size: 0.65rem; color: var(--txt3); letter-spacing: 0.1em; }
.share-btn {
  font-family: var(--f-ui); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 3px;
  display: flex; align-items: center; gap: 6px;
  transition: opacity var(--t);
}
.share-btn:hover { opacity: 0.85; }
.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.tw { background: #000; color: #fff; }
.share-btn.wa { background: #25d366; color: #fff; }
.share-btn.tg { background: #0088cc; color: #fff; }
.share-btn.cp { background: var(--bg4); border: 1px solid var(--border); color: var(--txt2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border2);
}
.footer-widget-title {
  font-family: var(--f-display); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--txt); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border2);
  position: relative;
}
.footer-widget-title::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 30px; height: 2px; background: var(--red);
}
.footer-desc { font-size: 0.875rem; color: var(--txt2); line-height: 1.7; }
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 0.875rem; color: var(--txt2); transition: color var(--t); display: flex; align-items: center; gap: 6px; }
.footer-nav-list a::before { content: '›'; color: var(--red); }
.footer-nav-list a:hover { color: var(--txt); padding-left: 4px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-family: var(--f-mono); font-size: 0.62rem; color: var(--txt3); letter-spacing: 0.08em; }
.footer-copy a { color: var(--txt3); transition: color var(--t); }
.footer-copy a:hover { color: var(--red); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-family: var(--f-mono); font-size: 0.62rem; color: var(--txt3); letter-spacing: 0.08em; text-transform: uppercase; transition: color var(--t); }
.footer-links a:hover { color: var(--gold-lt); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .hero-grid { grid-template-columns: 1fr; height: auto; }
  .hero-main { min-height: 320px; }
  .hero-side  { display: none; }
  .main-nav   { display: none; }
  .btn-menu   { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .topbar  { display: none; }
}

/* ── Grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ── Utility ── */
.mt-8  { margin-top: 8px; }  .mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }  .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.py-32 { padding: 32px 0; } .py-48 { padding: 48px 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--txt2); }
.text-red    { color: var(--red); }
.text-gold   { color: var(--gold-lt); }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.gap-8  { gap: 8px; }  .gap-12 { gap: 12px; }
.gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.w-100  { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
