/* ============================================================
   PREMMARG BLOG — Spiritual Design System
   Shrimad Bhagwat Kathā Blog Platform
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Hind:wght@300;400;500;600&family=Tiro+Devanagari+Hindi&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-deep:        #060003;
  --bg-primary:     #0d0008;
  --bg-secondary:   #150010;
  --bg-card:        rgba(22, 4, 12, 0.85);

  --saffron:        #d4872a;
  --saffron-light:  #e8a84a;
  --saffron-dark:   #a86218;
  --gold:           #f0c060;
  --gold-light:     #ffd97a;
  --crimson:        #8b1a1a;
  --crimson-light:  #b02424;
  --lotus-pink:     #c4607a;
  --maroon:         #4a0010;

  --text-primary:   #f5e6d3;
  --text-secondary: #c4a882;
  --text-muted:     #8a7060;
  --text-gold:      #f0c060;

  --glass-bg:          rgba(212, 135, 42, 0.04);
  --glass-bg-hover:    rgba(212, 135, 42, 0.09);
  --glass-border:      rgba(212, 135, 42, 0.28); /* Highlighted borders for clear separation */
  --glass-border-hover:rgba(212, 135, 42, 0.65); /* Highlighted hover state */
  --glass-glow:        rgba(212, 135, 42, 0.18);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --font-hindi:   'Hind', 'Tiro Devanagari Hindi', sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-card:  0 4px 30px rgba(0,0,0,0.45);
  --shadow-glow:  0 0 40px rgba(212,135,42,0.2);
  --shadow-hover: 0 10px 45px rgba(212,135,42,0.28);

  --transition-fast: 0.2s ease;
  --transition-mid:  0.38s ease;
  --transition-slow: 0.65s ease;
}

[data-theme="light"] {
  --bg-deep:        #f8fafc;
  --bg-primary:     #ffffff;
  --bg-secondary:   #f1f5f9;
  --bg-card:        #ffffff;

  --saffron:        #ea580c; /* Vibrant orange / saffron */
  --saffron-light:  #f97316;
  --saffron-dark:   #c2410c;
  --gold:           #b45309;
  --gold-light:     #d97706;
  --crimson:        #991b1b;
  --crimson-light:  #dc2626;
  --lotus-pink:     #db2777;
  --maroon:         #7f1d1d;

  --text-primary:   #0f172a; /* Deep slate navy for headings */
  --text-secondary: #334155; /* Charcoal for body copy */
  --text-muted:     #64748b; /* Slate gray for captions */
  --text-gold:      #ea580c;

  --glass-bg:          rgba(255, 255, 255, 0.85);
  --glass-bg-hover:    rgba(248, 250, 252, 0.95);
  --glass-border:      rgba(226, 232, 240, 0.8);
  --glass-border-hover:rgba(203, 213, 225, 1);
  --glass-glow:        rgba(234, 88, 12, 0.05);

  --shadow-card:  0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-glow:  0 0 40px rgba(234, 88, 12, 0.04);
  --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.15);
}

[data-theme="light"] .strip-day {
  background: var(--bg-card);
  border-color: var(--glass-border);
}
[data-theme="light"] .strip-day:hover {
  background: var(--glass-bg-hover);
  border-color: var(--saffron);
  box-shadow: var(--shadow-card);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ===== BASE ===== */
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--saffron-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--saffron); }

/* ===== FIXED BACKGROUND ===== */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(145deg, var(--bg-deep) 0%, var(--bg-primary) 45%, var(--bg-secondary) 100%);
  overflow: hidden;
  pointer-events: none;
}
.page-bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,26,26,0.1) 0%, transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
  animation: float-orb 10s ease-in-out infinite;
}
.page-bg::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,135,42,0.07) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  border-radius: 50%;
  animation: float-orb 13s ease-in-out infinite reverse;
}

/* ===== LOTUS PARTICLES ===== */
.lotus-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.lotus-p {
  position: absolute;
  opacity: 0;
  color: var(--saffron);
  animation: lotus-float linear infinite;
  font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  height: 72px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
  transition: var(--transition-mid);
}
.navbar.scrolled {
  top: 0.75rem;
  height: 64px;
  background: var(--bg-primary);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nav-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212,135,42,0.5));
  transition: var(--transition-fast);
}
.nav-brand:hover .nav-logo { filter: drop-shadow(0 0 16px rgba(212,135,42,0.8)); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.nav-brand-hi {
  font-family: var(--font-hindi);
  font-size: 0.72rem;
  color: var(--saffron);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  position: relative;
  transition: var(--transition-fast);
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%) scale(0);
  width: 5px; height: 5px;
  background: var(--saffron);
  border-radius: 50%;
  transition: var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--saffron); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scale(1); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transition: var(--transition-fast);
  display: block;
}

/* Mobile nav */
@media (max-width: 660px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 88px; /* Position right below the floating navbar */
    left: 1.5rem; right: 1.5rem;
    flex-direction: column;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 1.8rem 2rem;
    gap: 1.4rem;
    align-items: flex-start;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .navbar { padding: 0 1.4rem; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 2.5rem 60px;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(139,26,26,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(212,135,42,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-mandala {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 650px; height: 650px;
  opacity: 0.07; /* Increased opacity for better visibility */
  animation: spin-slow 80s linear infinite;
  pointer-events: none;
}
.hero-mandala svg { width: 100%; height: 100%; }
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
}
.hero-badge::before, .hero-badge::after {
  content: '';
  height: 1px; width: 36px;
  background: linear-gradient(90deg, transparent, var(--saffron));
  opacity: 0.6;
}
.hero-badge::after { background: linear-gradient(90deg, var(--saffron), transparent); }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-hi {
  font-family: var(--font-hindi);
  font-size: 1.15rem;
  color: var(--saffron-light);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
.hero-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(212, 135, 42, 0.16) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  animation: ring-breathe 8s ease-in-out infinite;
}
.hero-img-ring {
  position: relative;
  width: 300px; height: 360px;
  z-index: 2;
}
.hero-img-ring::before,
.hero-img-ring::after {
  content: '';
  position: absolute;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  border: 1px solid rgba(212,135,42,0.25);
  animation: ring-breathe 5s ease-in-out infinite;
}
.hero-img-ring::before { inset: -14px; }
.hero-img-ring::after  { inset: -28px; border-color: rgba(212,135,42,0.1); animation-delay: 0.8s; }
.hero-img-ring img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  box-shadow: 0 0 70px rgba(212,135,42,0.35), 0 20px 60px rgba(0,0,0,0.5);
  filter: brightness(0.95) saturate(1.1);
}
.hero-img-label {
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron-light));
  color: #fff;
  padding: 7px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-hindi);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(212,135,42,0.45);
  letter-spacing: 0.3px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-mid);
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 50%, var(--saffron-light) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(212,135,42,0.38);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(212,135,42,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--saffron-light);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(212,135,42,0.45);
  transform: translateY(-3px);
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.81rem;
}
.btn-ghost {
  background: transparent;
  color: var(--saffron);
  border: none;
  padding: 8px 0;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.btn-ghost:hover { gap: 12px; color: var(--saffron-light); }

/* ===== SECTION ===== */
.section {
  padding: 4.5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hr-gold + .section,
.hr-gold + .section-quotes {
  padding-top: 2.2rem !important;
}
.full-width-section {
  padding: 80px 2.5rem;
  width: 100%;
}
.full-width-section > .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.9rem;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--saffron);
  opacity: 0.45;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  line-height: 1.25;
}
.section-desc {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition-mid);
  overflow: hidden;
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.glass-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ===== SAPTAH CARDS ===== */
.saptah-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.6rem;
}
.saptah-card {
  padding: 2.2rem;
  position: relative;
}
.saptah-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0;
  transition: var(--transition-mid);
}
.glass-card:hover .saptah-card::before,
.saptah-card:hover::before { opacity: 1; }
.saptah-year-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,135,42,0.1);
  border: 1px solid rgba(212,135,42,0.22);
  border-radius: var(--radius-full);
  padding: 3px 14px;
  font-size: 0.73rem;
  color: var(--saffron-light);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.saptah-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.saptah-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}
.saptah-card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.saptah-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.day-dots {
  display: flex;
  gap: 5px;
}
.day-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(212,135,42,0.2);
  background: rgba(212,135,42,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.day-dot.filled {
  background: rgba(212,135,42,0.2);
  border-color: var(--saffron);
  color: var(--saffron-light);
}

/* ===== POST CARDS ===== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.post-card {
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  opacity: 0.85;
  transition: var(--transition-mid);
}
.post-card:hover::before {
  opacity: 1;
  height: 6px;
}
.post-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tag {
  border-radius: var(--radius-full);
  padding: 3px 13px;
  font-size: 0.7rem;
  letter-spacing: 0.4px;
  border: 1px solid;
}
.tag-day {
  background: rgba(212,135,42,0.1);
  border-color: rgba(212,135,42,0.25);
  color: var(--saffron-light);
}
.tag-featured {
  background: rgba(240,192,96,0.08);
  border-color: rgba(240,192,96,0.2);
  color: var(--gold);
}
.tag-hindi {
  background: rgba(196,96,122,0.08);
  border-color: rgba(196,96,122,0.2);
  color: var(--lotus-pink);
  font-family: var(--font-hindi);
}
.post-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.6rem;
  flex: 1;
}
.post-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.3rem;
}
.post-card-read {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition-fast);
}
.post-card:hover .post-card-read { gap: 12px; }

/* ===== FEATURED HERO POSTS ===== */
.featured-duo {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.featured-single {
  max-width: 850px;
  margin: 0 auto 1.5rem;
}
.featured-full {
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
}
.featured-full::after {
  content: '॥';
  position: absolute;
  bottom: 1.5rem; right: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--saffron);
  opacity: 0.05;
  line-height: 1;
}
.featured-main {
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
}
.featured-main::after {
  content: '॥';
  position: absolute;
  bottom: 1.5rem; right: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--saffron);
  opacity: 0.05;
  line-height: 1;
}
.featured-main .post-card-title {
  font-size: 1.55rem;
  margin-bottom: 1rem;
}
.featured-side {
  padding: 2rem;
}
.featured-side .post-card-title {
  font-size: 1.1rem;
}

.latest-saptah-strip {
  background: linear-gradient(135deg, var(--bg-card), rgba(212, 135, 42, 0.03));
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), inset 0 0 25px rgba(212, 135, 42, 0.02);
  transition: var(--transition-mid);
}
[data-theme="light"] .latest-saptah-strip {
  background: linear-gradient(135deg, #ffffff, rgba(212, 135, 42, 0.02));
  border-color: rgba(212, 135, 42, 0.2);
  box-shadow: 0 15px 35px rgba(212, 135, 42, 0.05);
}
.latest-saptah-strip:hover {
  border-color: rgba(212, 135, 42, 0.4);
  box-shadow: var(--shadow-hover);
}
.strip-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.strip-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}
.strip-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.8rem;
}
.strip-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 1rem 0.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--glass-border);
  background: rgba(212, 135, 42, 0.07); /* Lighter saffron glow tint in dark mode */
  transition: var(--transition-fast);
  text-align: center;
}
.strip-day:hover {
  background: rgba(212, 135, 42, 0.12);
  border-color: var(--saffron);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212, 135, 42, 0.15);
}
.strip-day.has-post {
  border-color: rgba(212, 135, 42, 0.45); /* Highlight cards that have posts */
}
.strip-day.active {
  background: rgba(212, 135, 42, 0.2);
  border-color: var(--saffron);
}
.strip-day-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(212,135,42,0.12);
  border: 1px solid rgba(212,135,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--saffron-light);
  transition: var(--transition-fast);
}
.strip-day:hover .strip-day-num,
.strip-day.active .strip-day-num {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}
.strip-day-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.strip-day-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}
.strip-day.has-post .strip-day-status {
  background: var(--saffron);
  opacity: 1;
  box-shadow: 0 0 6px rgba(212,135,42,0.6);
}

/* ===== PAGE HERO BANNER ===== */
.page-banner {
  padding: 160px 2.5rem 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212,135,42,0.1) 0%, transparent 60%);
}
.page-banner-om {
  font-size: 1.2rem;
  color: var(--saffron);
  opacity: 0.7;
  margin-bottom: 0.8rem;
  letter-spacing: 6px;
}
.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  position: relative;
}
.page-banner-hi {
  font-family: var(--font-hindi);
  color: var(--saffron);
  font-size: 1.05rem;
  position: relative;
  margin-bottom: 1rem;
}
.page-banner-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* ===== DAY TIMELINE (Katha page) ===== */
.day-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 1.4rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}
.timeline-item:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}
.timeline-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(212,135,42,0.1);
  border: 1px solid rgba(212,135,42,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.timeline-item:hover .timeline-num,
.timeline-item.active .timeline-num {
  background: rgba(212,135,42,0.22);
  border-color: var(--saffron);
}
.timeline-num-n {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--saffron-light);
  line-height: 1;
}
.timeline-num-l {
  font-size: 0.52rem;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.timeline-info .t-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}
.timeline-info .t-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.timeline-arrow {
  color: var(--saffron);
  opacity: 0;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}
.timeline-item:hover .timeline-arrow { opacity: 1; }

/* ===== SAPTAH DETAIL HEADER ===== */
.katha-hero {
  padding: 150px 2.5rem 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.katha-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.katha-breadcrumb a {
  color: var(--saffron);
  text-decoration: none;
  transition: var(--transition-fast);
}
.katha-breadcrumb a:hover { color: var(--saffron-light); }
.katha-breadcrumb span { opacity: 0.5; }
.katha-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.katha-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.katha-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.katha-meta-item svg { color: var(--saffron); opacity: 0.7; }
.katha-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 2rem;
}
.katha-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 80px;
}
.katha-sidebar-card {
  position: sticky;
  top: 90px;
  padding: 1.8rem;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--saffron-light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== POST READER ===== */
.post-reader-wrap {
  padding: 150px 2.5rem 80px;
  max-width: 840px;
  margin: 0 auto;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.post-breadcrumb a { color: var(--saffron); text-decoration: none; transition: var(--transition-fast); }
.post-breadcrumb a:hover { color: var(--saffron-light); }
.post-breadcrumb .sep { opacity: 0.4; }

.post-header { margin-bottom: 2.5rem; }
.post-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.post-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--text-primary);
  line-height: 1.28;
  margin-bottom: 1.4rem;
}
.post-meta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.post-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(212,135,42,0.07);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.77rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  color: #fff;
}
.lang-btn-hi { font-family: var(--font-hindi); }

/* Post Content */
.post-body { margin-top: 2rem; }
.post-content-en,
.post-content-hi {
  display: none;
  line-height: 1.92;
  font-size: 1.06rem;
  color: var(--text-primary);
}
.post-content-en.show,
.post-content-hi.show { display: block; }
.post-content-hi {
  font-family: var(--font-hindi);
  font-size: 1.12rem;
}
.post-content-en h2,
.post-content-hi h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin: 3rem 0 1.2rem;
  padding-left: 1.1rem;
  border-left: 4px solid var(--saffron);
  line-height: 1.25;
  scroll-margin-top: 110px; /* Offset scroll position to clear the floating navbar */
}
.post-content-en h2:empty,
.post-content-hi h2:empty {
  display: none;
}

/* Table of Contents (TOC) */
.post-toc {
  background: var(--bg-card);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.2rem 0;
  max-width: 540px;
  box-shadow: var(--shadow-card);
}
.toc-header {
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.toc-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--saffron);
}
.toc-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.toc-links li {
  margin-bottom: 0.6rem;
  font-size: 0.94rem;
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.4;
}
.toc-links li::before {
  content: '🪷';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.8rem;
  opacity: 0.85;
}
.toc-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
}
.toc-links a:hover {
  color: var(--saffron);
  padding-left: 4px;
}
.post-content-hi .toc-title {
  font-family: var(--font-hindi);
  font-size: 1.15rem;
}
.post-content-hi .toc-links a {
  font-family: var(--font-hindi);
  font-size: 1rem;
}

.post-content-en h3,
.post-content-hi h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--saffron);
  margin: 2.2rem 0 0.8rem;
  font-weight: 600;
}
.post-content-en p,
.post-content-hi p { margin-bottom: 1.45rem; }
.post-content-en blockquote,
.post-content-hi blockquote {
  margin: 2.2rem 0;
  padding: 1.6rem 2.2rem;
  background: rgba(212,135,42,0.06);
  border-left: 3px solid var(--saffron);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--gold);
  line-height: 1.85;
}
.post-content-hi blockquote { font-family: var(--font-hindi); font-style: normal; }
.post-content-en ol,
.post-content-en ul,
.post-content-hi ol,
.post-content-hi ul { padding-left: 1.6rem; margin-bottom: 1.4rem; }
.post-content-en li,
.post-content-hi li { margin-bottom: 0.65rem; }
.post-content-en strong,
.post-content-hi strong { color: var(--saffron-light); font-weight: 600; }

/* Post footer */
.post-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 2.5rem 0;
}
.share-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.share-label { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 1px; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.81rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid;
  background: transparent;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}
.share-wa {
  color: #25d366;
  border-color: rgba(37,211,102,0.25);
  background: rgba(37,211,102,0.06);
}
.share-wa:hover {
  background: rgba(37,211,102,0.15);
  transform: translateY(-2px);
}
.share-copy {
  color: var(--text-secondary);
  border-color: var(--glass-border);
  background: var(--glass-bg);
}
.share-copy:hover {
  color: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-2px);
}

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.post-nav-item {
  padding: 1.3rem 1.6rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: var(--transition-fast);
  color: inherit;
}
.post-nav-item:hover {
  background: var(--glass-bg-hover);
  border-color: var(--saffron);
}
.post-nav-prev { text-align: left; }
.post-nav-next { text-align: right; }
.post-nav-dir {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-nav-next .post-nav-dir { justify-content: flex-end; }
.post-nav-title {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  color: var(--saffron-light);
  line-height: 1.35;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 110px 2.5rem 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4.5rem;
  align-items: start;
}
.about-img-frame {
  position: sticky;
  top: 100px;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(212,135,42,0.18);
  border-radius: calc(var(--radius-lg) + 10px);
  pointer-events: none;
}
.about-img-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(212,135,42,0.28), 0 12px 40px rgba(0,0,0,0.5);
  filter: brightness(0.92) saturate(1.1);
}
.about-name {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.about-name-hi {
  font-family: var(--font-hindi);
  font-size: 1.2rem;
  color: var(--saffron);
  margin-bottom: 1.8rem;
}
.about-bio p {
  color: var(--text-secondary);
  line-height: 1.95;
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}
.about-bio .hindi-para {
  font-family: var(--font-hindi);
  font-size: 1.04rem;
  color: var(--saffron-light);
  border-left: 2px solid rgba(212,135,42,0.3);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  line-height: 2;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.stat-box {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ===== SEARCH & FILTER BAR ===== */
.toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  flex: 1;
  max-width: 400px;
  transition: var(--transition-fast);
}
.search-wrap:focus-within {
  border-color: var(--saffron);
  background: var(--glass-bg-hover);
  box-shadow: 0 0 0 3px rgba(212,135,42,0.1);
}
.search-wrap svg { color: var(--text-muted); flex-shrink: 0; }
.search-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: var(--font-body);
}
.search-wrap input::placeholder { color: var(--text-muted); }
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ftab {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  font-family: var(--font-body);
}
.ftab:hover,
.ftab.active {
  background: rgba(212,135,42,0.12);
  border-color: rgba(212,135,42,0.4);
  color: var(--saffron-light);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, transparent, var(--bg-deep) 30%);
  border-top: 1px solid rgba(212,135,42,0.1);
  padding: 4rem 2.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,135,42,0.08);
  margin-bottom: 2rem;
}
.footer-brand-logo {
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(212,135,42,0.3));
}
.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--saffron-light);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul a {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--saffron-light); }
.footer-col ul a::before {
  content: '›';
  color: var(--saffron);
  opacity: 0.5;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-om { font-size: 1.5rem; color: var(--saffron); opacity: 0.55; }

/* ===== DIVIDER ===== */
.hr-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,135,42,0.35), transparent);
  border: none;
  margin: 0.5rem 0;
  position: relative;
  overflow: visible;
}
.hr-gold::after {
  content: '🪷';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-primary);
  padding: 0 1.2rem;
  color: var(--saffron);
  font-size: 1.2rem;
  transition: var(--transition-mid);
}

/* ===== TOAST ===== */
#toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(20,6,12,0.97);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  z-index: 9999;
  transition: var(--transition-mid);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== SKELETON ===== */
.skel {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 1000px 100%;
  animation: skel-shimmer 1.8s infinite;
  border-radius: var(--radius-sm);
}

/* ===== NO RESULTS ===== */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 2.8rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.empty-state p { font-size: 0.9rem; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-saffron { color: var(--saffron-light); }
.text-muted { color: var(--text-muted); }
.font-heading { font-family: var(--font-heading); }
.font-hindi { font-family: var(--font-hindi); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.w-full { width: 100%; }

/* ===== ANIMATIONS ===== */
@keyframes float-orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-40px) scale(1.1); }
}
@keyframes lotus-float {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.055; }
  92%  { opacity: 0.055; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}
@keyframes spin-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes ring-breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.025); }
}
@keyframes skel-shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.anim-hero-1 { animation: fadeSlideUp 0.8s ease both; }
.anim-hero-2 { animation: fadeSlideUp 0.8s ease 0.15s both; }
.anim-hero-3 { animation: fadeSlideUp 0.8s ease 0.3s both; }
.anim-hero-4 { animation: fadeSlideUp 0.8s ease 0.45s both; }
.anim-hero-5 { animation: fadeSlideUp 0.8s ease 0.6s both; }

/* ===== DAILY QUOTES ===== */
.quotes-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.quote-card {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  opacity: 0.85;
}
.quote-symbol {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--saffron);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  pointer-events: none;
}
.quote-open {
  top: 1rem;
  left: 2.5rem;
}
.quote-close {
  bottom: 1.5rem;
  right: 2.5rem;
}
.quote-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.quote-text-hi {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.quote-text-en {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.quote-source {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--saffron);
}
.quote-next-btn {
  position: relative;
  z-index: 3;
  margin-top: 0.5rem;
  border-radius: var(--radius-full);
  padding: 10px 24px;
}
@media (max-width: 640px) {
  .quote-card { padding: 2.5rem 1.2rem; }
  .quote-symbol { display: none; }
  .quote-text-hi { font-size: 1.15rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .featured-duo { grid-template-columns: 1fr; }
  .katha-layout  { grid-template-columns: 1fr; }
  .katha-sidebar-card { position: static; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img-wrap { order: -1; }
  .hero-img-ring { width: 240px; height: 290px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .about-hero { grid-template-columns: 1fr; }
  .about-img-frame { max-width: 300px; margin: 0 auto; position: static; }
  .strip-days { grid-template-columns: repeat(4,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 60px 1.4rem; }
  .saptah-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .post-nav { grid-template-columns: 1fr; }
  .hero { padding: 140px 1.4rem 50px; }
  .page-banner { padding: 140px 1.4rem 50px; }
  .katha-hero { padding: 140px 1.4rem 40px; }
  .katha-layout { padding: 0 1.4rem 60px; }
  .post-reader-wrap { padding: 140px 1.4rem 60px; }
  .about-hero { padding: 140px 1.4rem 50px; }
  .navbar { padding: 0 1.2rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: 100%; }
}
@media (max-width: 480px) {
  .strip-days { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .latest-saptah-strip { padding: 1.5rem 1rem; }
  .strip-header { text-align: center; justify-content: center; }
  .strip-header .btn { width: 100%; justify-content: center; margin-top: 1rem; }
  .timeline-item { grid-template-columns: 50px 1fr; gap: 0.8rem; padding: 1rem; }
  .timeline-arrow { display: none; }
  .about-stats { grid-template-columns: 1fr; }
  .about-name { font-size: 2.1rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-img-ring { width: 200px; height: 240px; }
}
