@charset "UTF-8";
/* ============================================================================================== */
/* ============================================================================== _variables.scss */
/* ============================================================================================== */
:root {
  --gold: #bfa450;
  --kesar: #bfa450;
  --navy: #1e2535;
  --cream: #ecebe5;
  --ink: #1e2535;
  --ink-soft: #4a4a5a;
  --ink-muted: rgba(30,37,53,0.55);
  --font-min-size: 15px;
  --font-body: 'Crimson Pro', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --bg1:#eef2f8;
  --bg2:#f7f9fc;
  --white:#fff;
  --gold2:#bfa450;
  --gold-light:#e8d89a;
  --gold-dark:#8a6f2e;
  --blue:#1e4da1;
  --blue-mid:#3a6cbf;
  --blue-light:#dce9f8;
  --cream2:#fdf8f0;
}

/* ============================================================================================== */
/* =================================================================================== _tags.scss */
/* ============================================================================================== */
/* ============================================================================================== */
/* ================================================================================ _helpers.scss */
/* ============================================================================================== */
/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-min-size);
  color: var(--ink);
  background-color: var(--cream);
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Topbar ──────────────────────────────────────────────── */
.sv-topbar {
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 12px;
  font-family: var(--font-body);
  border-top: 2px solid var(--gold);
  border-bottom: 7px solid var(--gold);
}

.sv-topbar * {
  color: var(--bg1) !important;
}

.sv-topbar-left {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.sv-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sv-topbar .sv-lang {
  display: flex;
  gap: 8px;
}

.sv-topbar .sv-lang a {
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.sv-topbar .sv-lang a.active,
.sv-topbar .sv-lang a:hover {
  opacity: 1;
  color: var(--bg1) !important;
}

.sv-topbar a {
  transition: opacity 0.15s;
}

.sv-topbar a:hover {
  opacity: 0.75;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbarTop {
  height: 0;
}

.sv-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  transition: box-shadow 0.2s;
  border-bottom: 3px solid var(--gold);
}

.sv-nav * {
  font-size: 15px !important;
}

.sv-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.sv-brand img {
  height: 36px;
  width: auto;
}

.sv-brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.sv-brand-text em {
  font-style: italic;
  color: var(--gold);
}

.sv-nav-items {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.sv-nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: var(--font-min-size);
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  user-select: none;
  white-space: nowrap;
}

.sv-nav-link:hover,
.sv-nav-item.open .sv-nav-link {
  color: var(--gold) !important;
  border-bottom-color: var(--gold) !important;
}

.sv-chev {
  font-size: 9px;
  opacity: 0.6;
  margin-left: 3px;
}

/* ── Mega Menu ───────────────────────────────────────────── */
.sv-mega {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(30, 37, 53, 0.18);
}

.sv-nav-item.open .sv-mega {
  display: block;
}

.sv-mega-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
  gap: 0;
}

.sv-mega-left {
  width: 200px;
  flex-shrink: 0;
  border-right: 1px solid rgba(30, 37, 53, 0.08);
  padding-right: 20px;
  margin-right: 20px;
}

.sv-mega-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-weight: 600;
  margin-bottom: 12px;
}

.sv-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: var(--font-min-size);
  color: var(--ink-soft);
  transition: background 0.12s, color 0.12s;
  margin-bottom: 2px;
}

.sv-cat:hover,
.sv-cat.sel {
  background: rgba(191, 164, 80, 0.08);
  color: var(--gold) !important;
}

.sv-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(30, 37, 53, 0.2);
  flex-shrink: 0;
  transition: background 0.12s;
}

.sv-cat.sel .sv-cat-dot,
.sv-cat:hover .sv-cat-dot {
  background: var(--gold) !important;
}

.sv-mega-right {
  flex: 1;
}

.sv-panel {
  display: none;
}

.sv-panel.vis {
  display: block;
}

.sv-panel-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sv-panel-title a {
  color: var(--gold) !important;
  font-size: 13px;
  font-family: var(--font-body);
}

.sv-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 16px;
  margin-bottom: 16px;
}

.sv-link {
  font-size: var(--font-min-size);
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 0.12s;
  display: block;
}

.sv-link:hover {
  color: var(--gold);
}

.sv-link.pillar {
  font-weight: 600;
  color: var(--ink);
}

.sv-link.pillar:hover {
  color: var(--gold);
}

.sv-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sv-tags-label {
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sv-tag-pill {
  font-size: 12px;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 20px;
  padding: 3px 10px;
  transition: background 0.12s, color 0.12s;
}

.sv-tag-pill:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ── Search ──────────────────────────────────────────────── */
.sv-search {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.sv-search input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 6px 12px;
  font-size: 13px;
  color: #fff;
  width: 180px;
  outline: none;
}

.sv-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sv-search button {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.15s;
}

.sv-search button:hover {
  background: #8a6f2e !important;
}

/* ── Hamburger ───────────────────────────────────────────── */
.sv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.sv-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.2s;
}

/* ── Mobile Drawer ───────────────────────────────────────── */
.sv-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.sv-mobile-drawer.open {
  display: block;
}

.sv-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.sv-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: var(--navy);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sv-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-drawer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.sv-drawer-brand em {
  color: var(--gold);
  font-style: italic;
}

.sv-drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

.sv-drawer-search {
  display: flex;
  padding: 12px 16px;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-drawer-search input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 8px 12px;
  font-size: 13px;
  color: #fff;
  outline: none;
}

.sv-drawer-search button {
  background: var(--gold);
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--navy);
}

.sv-drawer-nav {
  flex: 1;
  padding: 8px 0;
}

.sv-mob-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-mob-trigger {
  width: 100%;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: var(--font-min-size);
  font-weight: 500;
  padding: 13px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s;
}

.sv-mob-trigger:hover,
.sv-mob-trigger.open {
  color: var(--gold);
}

.sv-mob-arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.2s;
}

.sv-mob-trigger.open .sv-mob-arrow {
  transform: rotate(180deg);
}

.sv-mob-sub {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 0 8px 0;
}

.sv-mob-sub.open {
  display: block;
}

.sv-mob-link {
  display: block;
  padding: 8px 20px 8px 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  transition: color 0.12s;
}

.sv-mob-link:hover {
  color: var(--gold);
}

.sv-mob-link.pillar {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.sv-drawer-foot {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-drawer-foot-links {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.sv-drawer-foot-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.sv-drawer-foot-links a:hover {
  color: var(--gold);
}

.sv-drawer-lang {
  display: flex;
  gap: 10px;
}

.sv-drawer-lang a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}

.sv-drawer-lang a.active,
.sv-drawer-lang a:hover {
  color: var(--gold);
}

/* ── Hero ────────────────────────────────────────────────── */
.sv-home-hero {
  background: var(--navy);
  padding: 60px 24px;
}

.sv-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.sv-hero-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.sv-hero-left img {
  height: 250px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(191, 164, 80, 0.3));
}

.hl-divider {
  width: 2px;
  height: 80px;
  background: rgba(191, 164, 80, 0.4);
}

.hl-gurmukhi {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

.sv-hero-right h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.sv-hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 24px;
}

.sv-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sv-hero-pill {
  background: rgba(191, 164, 80, 0.15) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(191, 164, 80, 0.3) !important;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.sv-hero-pill:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ── Ticker ──────────────────────────────────────────────── */
.sv-ticker {
  display: flex;
  align-items: center;
  background: var(--navy);
  border-top: 1px solid rgba(191, 164, 80, 0.2);
  padding: 10px 0;
  overflow: hidden;
}

.sv-ticker-label {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 16px;
}

.sv-ticker-track {
  flex: 1;
  overflow: hidden;
}

.sv-ticker-inner {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.sv-ticker-item {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

.sv-ticker-item strong {
  color: var(--gold);
}

/* ── Stats Band ──────────────────────────────────────────── */
.sv-stats-band {
  background: #fff;
  border-bottom: 1px solid rgba(30, 37, 53, 0.08);
  padding: 28px 24px;
}

.sv-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sv-stat {
  text-align: center;
}

.sv-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold) !important;
  line-height: 1;
}

.sv-stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 4px;
}

/* ── Topics Section ──────────────────────────────────────── */
.sv-topics-section {
  background: var(--cream);
  padding: 60px 24px;
}

.sv-sec-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.sv-topics-header {
  text-align: center;
  margin-bottom: 48px;
}

.sv-sec-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-weight: 600;
  margin-bottom: 8px;
}

.sv-sec-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.sv-sec-title em {
  color: var(--gold);
  font-style: italic;
}

.sv-gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold) !important;
  margin: 0 auto 16px;
  border-radius: 2px;
}

/* ── Topic Universe / Category Groups ────────────────────── */
.sv-topic-universe {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sv-cat-group {
  width: 100%;
}

.sv-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(191, 164, 80, 0.2);
}

.sv-cat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.sv-cat-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.sv-cat-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.sv-cat-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(191, 164, 80, 0.4) !important;
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sv-topic-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sv-tc {
  background: #fff;
  border: 1px solid rgba(30, 37, 53, 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}

.sv-tc:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 4px 20px rgba(191, 164, 80, 0.15);
  transform: translateY(-2px);
  color: inherit;
}

.sv-tc-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold) !important;
  line-height: 1;
}

.sv-tc-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.sv-tc-sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}

.sv-tc-arrow {
  font-size: 12px;
  color: var(--gold) !important;
  font-weight: 600;
  margin-top: 4px;
  transition: color 0.12s;
}

.sv-tc:hover .sv-tc-arrow {
  color: var(--gold) !important;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: #141c2b;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
}

.footer-logo-block {
  padding: 40px 32px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo-img {
  max-width: 300px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(191, 164, 80, 0.3));
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: var(--font-min-size);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.footer-date-strip {
  background: rgba(191, 164, 80, 0.08);
  border-bottom: 1px solid rgba(191, 164, 80, 0.15);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-date-label {
  font-size: var(--font-min-size);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.footer-date-value {
  font-family: var(--font-heading);
  font-size: var(--font-min-size);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-date-sep {
  color: rgba(191, 164, 80, 0.4);
  font-size: var(--font-min-size);
}

.footer-body {
  padding: 36px 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-col-title,
.footer-form-title {
  font-size: var(--font-min-size);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(191, 164, 80, 0.2) !important;
}

.footer-form-title {
  margin-bottom: 6px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: var(--font-min-size);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--gold) !important;
}

.footer-form-sub {
  font-size: var(--font-min-size);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 12.5px;
  color: #fff;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-input:focus {
  border-color: var(--gold) !important;
}

.footer-submit {
  background: var(--gold) !important;
  color: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: var(--font-min-size);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}

.footer-submit:hover {
  background: #8a6f2e !important;
  color: #fff;
}

.footer-bottom {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: var(--font-min-size);
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--gold) !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .sv-nav-items {
    display: none;
  }
  .sv-search {
    display: none;
  }
  .sv-hamburger {
    display: flex;
  }
  .sv-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .sv-hero-left {
    justify-content: center;
  }
  .sv-topic-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sv-topbar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 8px 16px;
  }
  .sv-hero-left img {
    height: 150px;
  }
  .sv-topic-cards {
    grid-template-columns: 1fr;
  }
  .footer-body {
    grid-template-columns: 1fr 1fr;
    padding: 28px 16px;
  }
  .footer-bottom {
    padding: 14px 16px;
    flex-direction: column;
    text-align: center;
  }
  .footer-date-strip {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-logo-block {
    padding: 32px 16px 24px;
  }
}
@media (max-width: 480px) {
  .footer-body {
    grid-template-columns: 1fr;
  }
  .sv-topic-cards {
    grid-template-columns: 1fr;
  }
}
/* ============================================================================================== */
/* ================================================================================ _layouts.scss */
/* ============================================================================================== */
/* ── Layout Wrappers ─────────────────────────────────────── */
.sv-main-1f,
.sv-main-2,
.sv-main-3 {
  min-height: 60vh;
  background: var(--cream);
  padding: 36px 24px;
}

.sv-layout-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.sv-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
}

.sv-breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sv-breadcrumb ol li::after {
  content: "›";
  color: #bbb;
  font-size: 14px;
}

.sv-breadcrumb ol li:last-child::after {
  display: none;
}

.sv-breadcrumb ol li a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.15s;
}

.sv-breadcrumb ol li a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ── Layout 3 — Section Nav (col-md-2) ───────────────────── */
.sv-secnav-col {
  padding-top: 4px;
}

.sv-secnav {
  position: sticky;
  top: 80px;
}

.sv-secnav-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(191, 164, 80, 0.2);
  margin-bottom: 8px;
}

.sv-secnav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sv-secnav-list li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  display: block;
  padding: 6px 8px;
  border-left: 2px solid transparent;
  line-height: 1.4;
  transition: all 0.15s;
  border-radius: 0 4px 4px 0;
}

.sv-secnav-list li a:hover {
  color: var(--navy);
  border-left-color: rgba(191, 164, 80, 0.4);
  background: rgba(191, 164, 80, 0.05);
}

.sv-secnav-list li.active a {
  color: var(--navy);
  font-weight: 600;
  border-left-color: var(--gold);
  background: rgba(191, 164, 80, 0.08);
}

/* ── Sidebar (col-md-3) ──────────────────────────────────── */
.sv-sidebar-col {
  padding-top: 4px;
}

.sv-sidebar-block {
  margin-bottom: 24px;
  border: 1px solid rgba(30, 37, 53, 0.09);
  border-radius: 8px;
  overflow: hidden;
}

.sv-sidebar-title {
  background: var(--navy);
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.sv-sidebar-list,
.sv-sidebar-links {
  list-style: none;
  padding: 10px 16px;
  margin: 0;
  background: #fff;
}

.sv-sidebar-list li,
.sv-sidebar-links li {
  border-bottom: 1px solid rgba(30, 37, 53, 0.06);
  padding: 6px 0;
}

.sv-sidebar-list li:last-child,
.sv-sidebar-links li:last-child {
  border-bottom: none;
}

.sv-sidebar-list li a,
.sv-sidebar-links li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
  transition: color 0.15s;
}

.sv-sidebar-list li a::before,
.sv-sidebar-links li a::before {
  content: "›";
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1.3;
}

.sv-sidebar-list li a:hover,
.sv-sidebar-links li a:hover {
  color: var(--gold);
}

/* Calendar sidebar block */
.sv-sidebar-calendar .sv-sidebar-date {
  background: #fff;
  padding: 12px 16px 4px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.sv-sidebar-cal-link {
  display: block;
  padding: 6px 16px 14px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.15s;
}

.sv-sidebar-cal-link:hover {
  opacity: 0.75;
  text-decoration: underline;
  color: var(--gold);
}

/* ── Layout 3 Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .sv-secnav {
    position: static;
    margin-bottom: 20px;
  }
  .sv-secnav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .sv-secnav-list li a {
    border: 1px solid rgba(191, 164, 80, 0.3);
    border-left: 1px solid rgba(191, 164, 80, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .sv-secnav-list li.active a {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }
}
.hero-search-box {
  background: var(--gold);
  border-radius: 50px;
  padding: 0.5rem;
  display: flex;
  /*align-items: center;*/
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto 30px 0;
  align-items: flex-start;
}

.hero-search-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: transparent;
}

.hero-search-box input::placeholder {
  color: var(--ink-muted);
}

.hero-search-box button {
  background-color: var(--white);
  color: var(--blue);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero-search-box button:hover {
  background-color: var(--gold-dark);
}

/* ============================================================================================== */
/* ============================================================= assets/cssSikhverse/_navbar.scss */
/* ============================================================================================== */
/* ── TOPBAR ── */
.sv-topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  padding: 6px 0;
  letter-spacing: 0.02em;
}

.sv-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sv-topbar a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.sv-topbar a:hover {
  color: var(--kesar-light);
}

.sv-topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ── MAIN NAVBAR ── */
.sv-navbar {
  background: #fff;
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.08);
}

.sv-navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  height: 64px;
}

/* ── LOGO ── */
.sv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 28px;
  flex-shrink: 0;
}

.sv-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}

.sv-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.sv-logo-text span {
  color: var(--kesar);
}

/* ── NAV LIST ── */
.sv-nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  flex: 1;
}

.sv-nav-item {
  position: static;
  display: flex;
  align-items: stretch;
}

.sv-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.sv-nav-link:hover, .sv-nav-item.open .sv-nav-link {
  --gold: #bfa450;
  --gold-light: #e8d89a;
  --gold-dark: #8a6f2e;
  border-bottom-color: var(--gold);
}

.sv-nav-link svg {
  width: 11px;
  height: 11px;
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-top: 1px;
}

.sv-nav-item.open .sv-nav-link svg {
  transform: rotate(180deg);
}

/* ── NAVBAR RIGHT ── */
.sv-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.sv-search-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  transition: border-color 0.2s, color 0.2s;
}

.sv-search-btn:hover {
  border-color: var(--kesar);
  --gold: #bfa450;
  --gold-light: #e8d89a;
  --gold-dark: #8a6f2e;
}

/* ── MEGA MENU PANEL ── */
.sv-mega {
  --gold: #bfa450;
  --gold-light: #e8d89a;
  --gold-dark: #8a6f2e;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.14);
  z-index: 999;
}

.sv-nav-item.open .sv-mega {
  display: block;
}

.sv-mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px;
  display: grid;
  gap: 0;
}

.sv-mega-inner.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.sv-mega-inner.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sv-mega-inner.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.sv-mega-inner.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.sv-mega-col {
  padding: 0 24px 0 0;
  border-right: 1px solid var(--border);
}

.sv-mega-col:last-child {
  border-right: none;
  padding-right: 0;
}

.sv-mega-col + .sv-mega-col {
  padding-left: 24px;
}

.sv-mega-heading {
  --gold: #bfa450;
  --gold-light: #e8d89a;
  --gold-dark: #8a6f2e;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border);
}

.sv-mega-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 14px;
}

.sv-mega-links:last-child {
  margin-bottom: 0;
}

.sv-mega-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}

.sv-mega-links a:hover {
  background: var(--cream);
  color: #bfa450;
}

.sv-mega-links a .link-icon {
  width: 26px;
  height: 26px;
  background: var(--cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.sv-mega-links a:hover .link-icon {
  background: rgba(191, 164, 80, 0.15);
}

/* Featured card */
.sv-mega-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
}

.sv-mega-featured-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.sv-mega-featured-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sv-mega-featured-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 14px;
}

.sv-mega-featured-link {
  --gold: #bfa450;
  --gold-light: #e8d89a;
  --gold-dark: #8a6f2e;
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.sv-mega-featured-link:hover {
  background: var(--kesar-light);
}

/* Simple links */
.sv-mega-simple-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sv-mega-simple-links a {
  display: block;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sv-mega-simple-links a:hover {
  background: var(--cream);
  color: var(--kesar);
}

/* About — simple dropdown */
.sv-dropdown {
  --gold: #bfa450;
  --gold-light: #e8d89a;
  --gold-dark: #8a6f2e;
  border-top: 3px solid var(--gold);
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  width: 230px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 30px rgba(26, 39, 68, 0.12);
  padding: 8px 0;
  z-index: 999;
}

.sv-nav-item.about-item {
  position: relative;
}

.sv-nav-item.about-item.open .sv-dropdown {
  display: block;
}

.sv-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sv-dropdown a:hover {
  background: var(--cream);
  color: var(--kesar);
}

.sv-dropdown-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 6px 0;
}

/* Hero */
.sv-hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.sv-hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.sv-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile hamburger */
.sv-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}

.sv-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile drawer */
.sv-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: #fff;
  z-index: 2000;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.sv-mobile-drawer.open {
  transform: translateX(0);
}

.sv-drawer-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sv-drawer-header .logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.sv-drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.sv-drawer-close:hover {
  color: #fff;
}

.sv-drawer-nav {
  padding: 12px 0;
}

.sv-drawer-item {
  border-bottom: 1px solid var(--border);
}

.sv-drawer-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
}

.sv-drawer-link:hover {
  background: var(--cream);
  color: var(--kesar);
}

.sv-drawer-link .arr {
  font-size: 10px;
  transition: transform 0.25s;
}

.sv-drawer-item.open .sv-drawer-link .arr {
  transform: rotate(90deg);
}

.sv-drawer-sub {
  display: none;
  background: #fafafa;
  padding: 4px 0 8px;
}

.sv-drawer-item.open .sv-drawer-sub {
  display: block;
}

.sv-drawer-sub a {
  display: block;
  padding: 9px 32px;
  font-size: 13px;
  color: var(--ink-light);
  text-decoration: none;
}

.sv-drawer-sub a:hover {
  --gold:#bfa450;
  --gold-light:#e8d89a;
  --gold-dark:#8a6f2e;
}

.sv-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
}

.sv-overlay.open {
  display: block;
}

.highlight-link {
  --gold:#bfa450;
  --gold-light:#e8d89a;
  --gold-dark:#8a6f2e;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .sv-nav, .sv-nav-right {
    display: none;
  }
  .sv-hamburger {
    display: flex;
  }
  .sv-mobile-drawer {
    display: block;
  }
}
/* ============================================================================================== */
/* ============================================================= assets/cssSikhverse/_layout.scss */
/* ============================================================================================== */
/* ── HISTORY CATEGORY PAGE ── */
.sv-cat-page {
  padding: 48px 0 72px;
}

/* Breadcrumb */
.sv-breadcrumb {
  font-family: "Crimson Pro", serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sv-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.sv-breadcrumb a:hover {
  text-decoration: underline;
}

.sv-breadcrumb span {
  color: #aaa;
}

/* Section Header */
.sv-section-head {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(191, 164, 80, 0.2);
}

.sv-section-eyebrow {
  font-family: "Crimson Pro", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sv-section-head h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 14px;
}

.sv-section-head h1 em {
  color: var(--gold);
  font-style: italic;
}

.sv-section-head p {
  font-family: "Crimson Pro", serif;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 640px;
  margin: 0;
}

/* Era Filter Tabs */
.sv-era-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.sv-era-tab {
  font-family: "Crimson Pro", serif;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border: 1px solid rgba(191, 164, 80, 0.4);
  border-radius: 20px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.sv-era-tab:hover,
.sv-era-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Article Cards Grid */
.sv-article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.sv-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 900px) {
  .sv-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .sv-article-grid {
    grid-template-columns: 1fr;
  }
}
.sv-article-card {
  background: #fff;
  border: 1px solid rgba(30, 37, 53, 0.08);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.sv-article-card:hover {
  box-shadow: 0 6px 28px rgba(30, 37, 53, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}

.sv-article-card.featured {
  grid-column: 1/-1;
  flex-direction: row;
}

.sv-card-img {
  background: var(--navy);
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.sv-article-card.featured .sv-card-img {
  width: 240px;
  height: auto;
  min-height: 200px;
}

.sv-card-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e2535 0%, #2d3a52 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.5;
}

.sv-card-era-badge {
  position: relative;
  z-index: 1;
  font-family: "Crimson Pro", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 8px;
  border-radius: 3px;
}

.sv-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sv-card-tag {
  font-family: "Crimson Pro", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 6px;
}

.sv-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 8px;
}

.sv-article-card.featured .sv-card-title {
  font-size: 1.4rem;
}

.sv-card-excerpt {
  font-family: "Crimson Pro", serif;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px;
  flex: 1;
}

.sv-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.sv-card-read {
  font-family: "Crimson Pro", serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.sv-card-dot {
  color: #ccc;
  font-size: 10px;
}

.sv-card-mins {
  font-family: "Crimson Pro", serif;
  font-size: 13px;
  color: #aaa;
}

/* Sub-section Divider */
.sv-subsec-title {
  font-size: 2rem !important;
  color: var(--gold);
}

.sv-subsec-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 24px;
}

.sv-subsec-divider-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem !important;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.sv-subsec-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(191, 164, 80, 0.25);
}

.sv-subsec-divider-link {
  font-family: "Crimson Pro", serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  float: right;
}

.sv-subsec {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0 22px;
}

.sv-subsec-divider-link:hover {
  text-decoration: underline;
}

/* Timeline Strip */
.sv-timeline-strip {
  background: var(--navy);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 40px 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: red !important;
  /* Chrome, Edge, Safari */
}
.sv-timeline-strip ::-webkit-scrollbar {
  width: 10px;
}
.sv-timeline-strip ::-webkit-scrollbar-track {
  scrollbar-color: red !important;
}
.sv-timeline-strip ::-webkit-scrollbar-thumb {
  scrollbar-color: red !important;
  border-radius: 5px;
}
.sv-timeline-strip ::-webkit-scrollbar-thumb:hover {
  scrollbar-color: red !important;
}

.sv-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  position: relative;
  padding: 0 12px;
  text-decoration: none;
}

.sv-tl-item::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 12px;
  width: 1px;
  height: 30px;
  background: rgba(191, 164, 80, 0.2);
}

.sv-tl-item:last-child::after {
  display: none;
}

.sv-tl-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.sv-tl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 6px;
  flex-shrink: 0;
}

.sv-tl-label {
  font-family: "Crimson Pro", serif;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.4;
}

/* Pagination */
.sv-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 40px 0 0;
}

.sv-page-btn {
  font-family: "Crimson Pro", serif;
  font-size: 15px;
  font-weight: 600;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 164, 80, 0.3);
  border-radius: 6px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: all 0.2s;
}

.sv-page-btn:hover,
.sv-page-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.sv-page-btn.dots {
  border-color: transparent;
  cursor: default;
}

.sv-page-btn.dots:hover {
  background: transparent;
  color: var(--ink-soft);
}

/* ── LEFT NAV (col-md-2) ── */
.sv-section-nav {
  position: sticky;
  top: 90px;
}

.sv-section-nav-title {
  font-family: "Crimson Pro", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(191, 164, 80, 0.2);
  margin-bottom: 10px;
}

.sv-section-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sv-section-nav ul li a {
  font-family: "Crimson Pro", serif;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  display: block;
  padding: 6px 10px 6px 8px;
  border-left: 2px solid transparent;
  line-height: 1.4;
  transition: all 0.15s;
}

.sv-section-nav ul li a:hover {
  color: var(--navy);
  border-left-color: rgba(191, 164, 80, 0.4);
  background: rgba(191, 164, 80, 0.05);
}

.sv-section-nav ul li a.active {
  color: var(--navy);
  font-weight: 600;
  border-left-color: var(--gold);
  background: rgba(191, 164, 80, 0.08);
}

/* ── RIGHT SIDEBAR (col-md-3) ── */
.sv-sidebar-block {
  margin-bottom: 28px;
  border: 1px solid rgba(30, 37, 53, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.sv-sidebar-head {
  background: var(--navy);
  padding: 12px 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.sv-sidebar-head em {
  color: var(--gold);
  font-style: normal;
}

.sv-sidebar-body {
  padding: 14px 16px;
  background: #fff;
}

.sv-sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sv-sidebar-links li {
  border-bottom: 1px solid rgba(30, 37, 53, 0.06);
  padding: 7px 0;
}

.sv-sidebar-links li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sv-sidebar-links li a {
  font-family: "Crimson Pro", serif;
  font-size: 14.5px;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  transition: color 0.15s;
}

.sv-sidebar-links li a:hover {
  color: var(--gold);
}

.sv-sidebar-links li a::before {
  content: "›";
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.3;
}

/* Network block */
.sv-sidebar-network {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sv-sidebar-network li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(30, 37, 53, 0.06);
}

.sv-sidebar-network li:last-child {
  border-bottom: none;
}

.sv-sidebar-network a {
  font-family: "Crimson Pro", serif;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: color 0.15s;
}

.sv-sidebar-network a:hover {
  color: var(--gold);
}

.sv-sidebar-network .snn-name {
  font-weight: 600;
  font-size: 14px;
}

.sv-sidebar-network .snn-desc {
  font-size: 12.5px;
  color: #888;
}

/* On this page quote */
.sv-sidebar-quote {
  background: var(--navy);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 28px;
}

.sv-sidebar-quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 10px;
  border: none;
  padding: 0;
}

.sv-sidebar-quote cite {
  font-family: "Crimson Pro", serif;
  font-size: 12px;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991px) {
  .sv-article-grid {
    grid-template-columns: 1fr;
  }
  .sv-article-card.featured {
    flex-direction: column;
  }
  .sv-article-card.featured .sv-card-img {
    width: 100%;
    height: 180px;
  }
  .sv-section-nav {
    position: static;
    margin-bottom: 24px;
  }
  .sv-timeline-strip {
    gap: 0;
  }
}
@media (max-width: 767px) {
  .sv-era-tabs {
    gap: 6px;
  }
  .sv-era-tab {
    font-size: 13px;
    padding: 5px 12px;
  }
}
/* ── Banda Singh Article Specific Styles ── */
/* Hero Section */
.banda-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3550 100%);
  border-radius: 12px;
  padding: 40px 48px;
  margin-bottom: 32px;
  /*position: relative;*/
  overflow: hidden;
  position: sticky;
}

.banda-hero::before {
  content: "⚔️";
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 180px;
  opacity: 0.06;
  pointer-events: none;
}

.banda-hero-eyebrow {
  font-family: "Crimson Pro", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.banda-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.banda-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.banda-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  font-family: "Crimson Pro", serif;
  font-size: 13px;
}

.banda-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
}

.banda-hero-meta-item strong {
  color: var(--gold);
  font-weight: 600;
}

.banda-quote-block {
  background: rgba(191, 164, 80, 0.08);
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}

.banda-quote-block p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.5;
}

.banda-quote-block cite {
  font-size: 13px;
  color: var(--ink-soft);
  display: block;
}

.banda-timeline-box {
  background: #fff;
  border: 1px solid rgba(30, 37, 53, 0.09);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.banda-timeline-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.banda-timeline-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banda-tl-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(30, 37, 53, 0.06);
}

.banda-tl-year {
  font-family: "Crimson Pro", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  min-width: 70px;
}

.banda-tl-desc {
  font-size: 14px;
  color: var(--ink-soft);
}

.banda-battle-card {
  background: #fff;
  border: 1px solid rgba(30, 37, 53, 0.09);
  border-radius: 10px;
  padding: 20px;
  margin: 24px 0;
}

.banda-battle-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}

.banda-battle-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid rgba(191, 164, 80, 0.15);
  border-bottom: 1px solid rgba(191, 164, 80, 0.15);
}

.banda-battle-stat {
  display: flex;
  flex-direction: column;
}

.banda-battle-stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.banda-battle-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

/* Fixed: Martyrdom Card with Proper Contrast */
.banda-martyrdom-card {
  background: linear-gradient(135deg, #1e2535 0%, #2a3550 100%);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
  text-align: center;
  border: 1px solid rgba(191, 164, 80, 0.3);
}

.banda-martyrdom-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff !important; /* Forces white text */
  margin: 0 0 12px;
}

.banda-martyrdom-card .martyr-year {
  font-family: "Crimson Pro", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold) !important; /* Gold for visibility */
  line-height: 1;
  margin: 16px 0;
}

.banda-martyrdom-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85) !important; /* Light gray/white for readability */
  margin-bottom: 12px;
}

.banda-martyrdom-card small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.banda-legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.banda-legacy-item {
  background: #fff;
  border: 1px solid rgba(30, 37, 53, 0.09);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.banda-legacy-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.banda-legacy-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.banda-legacy-item p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 768px) {
  .banda-hero {
    padding: 28px 20px;
  }
  .banda-legacy-grid {
    grid-template-columns: 1fr;
  }
  .banda-hero-meta {
    flex-direction: column;
    gap: 8px;
  }
}
/* Mobile drawer */
.sv-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: #fff;
  z-index: 2000;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.sv-mobile-drawer.open {
  transform: translateX(0);
}

.sv-drawer-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sv-drawer-header .logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.sv-drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.sv-drawer-close:hover {
  color: #fff;
}

.sv-drawer-nav {
  padding: 12px 0;
}

.sv-drawer-item {
  border-bottom: 1px solid var(--border);
}

.sv-drawer-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
}

.sv-drawer-link:hover {
  background: var(--cream);
  color: var(--kesar);
}

.sv-drawer-link .arr {
  font-size: 10px;
  transition: transform 0.25s;
}

.sv-drawer-item.open .sv-drawer-link .arr {
  transform: rotate(90deg);
}

.sv-drawer-sub {
  display: none;
  background: #fafafa;
  padding: 4px 0 8px;
}

.sv-drawer-item.open .sv-drawer-sub {
  display: block;
}

.sv-drawer-sub a {
  display: block;
  padding: 9px 32px;
  font-size: 13px;
  color: var(--ink-light);
  text-decoration: none;
}

.sv-drawer-sub a:hover {
  --gold:#bfa450;
  --gold-light:#e8d89a;
  --gold-dark:#8a6f2e;
}

.sv-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
}

.sv-overlay.open {
  display: block;
}

.highlight-link {
  --gold:#bfa450;
  --gold-light:#e8d89a;
  --gold-dark:#8a6f2e;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .sv-nav, .sv-nav-right {
    display: none;
  }
  .sv-hamburger {
    display: flex;
  }
  .sv-mobile-drawer {
    display: block;
  }
}
/* Sub-section Divider */
.sv-subsec {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0 22px;
}

.sv-subsec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.sv-subsec-line {
  flex: 1;
  height: 1px;
  background: rgba(191, 164, 80, 0.22);
}

.sv-subsec-link {
  font-family: "Crimson Pro", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}

.sv-subsec-link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
