/*
Theme Name: Sanatan Seva
Theme URI: https://example.com
Author: Dev
Description: Premium NGO & Sanatan Dharma WordPress Theme
Version: 1.0
Text Domain: sanatan-seva
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --saffron: #ff7a00;
  --maroon: #7a1f1f;
  --gold: #d4af37;
  --cream: #fff8ed;
  --ink: #1a120b;
  --muted: #6f6254;
  --white: #ffffff;
  --line: rgba(122, 31, 31, 0.14);
  --shadow: 0 20px 55px rgba(74, 29, 8, 0.13);
  --radius: 8px;
  --heading: "Cinzel", "Playfair Display", Georgia, serif;
  --body: "Poppins", "Noto Sans Devanagari", "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 237, 0.82);
  border-bottom: 1px solid rgba(122, 31, 31, 0.1);
  box-shadow: 0 12px 34px rgba(74, 29, 8, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 44px);
  width: 100%;
  padding: 12px clamp(40px, 5vw, 80px);
}

.site-branding {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 250px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(255, 122, 0, 0.18);
}

.site-branding > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-title {
  margin: 0;
  color: var(--maroon);
  font-family: var(--heading);
  font-size: clamp(1.05rem, 1.25vw, 1.38rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  white-space: nowrap;
}

.site-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.header-center {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.main-navigation {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 16px);
  min-width: 0;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 18px);
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-navigation a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #3c2b1d;
  font-weight: 800;
  font-size: clamp(0.94rem, 0.92vw, 1.06rem);
  line-height: 1;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  background: rgba(122, 31, 31, 0.1);
  color: var(--maroon);
  box-shadow: inset 0 0 0 1px rgba(122, 31, 31, 0.06);
}

.main-navigation a:hover {
  transform: translateY(-1px);
}

.main-navigation li {
  position: relative;
  min-width: 0;
}

.main-navigation .menu-item-has-children > a {
  gap: 8px;
  padding-right: 15px;
}

.main-navigation .menu-item-has-children > a::after {
  content: "";
  position: static;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.62;
  transition: transform 0.18s ease;
}

.main-navigation .menu-item-has-children:hover > a::after,
.main-navigation .menu-item-has-children:focus-within > a::after {
  transform: translateY(2px) rotate(225deg);
}

.main-navigation .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  z-index: 10;
  min-width: 245px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(122, 31, 31, 0.12);
  border-radius: 14px;
  background: rgba(255, 248, 237, 0.98);
  box-shadow: 0 24px 54px rgba(74, 29, 8, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.main-navigation .sub-menu::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -6px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(122, 31, 31, 0.12);
  border-top: 1px solid rgba(122, 31, 31, 0.12);
  background: rgba(255, 248, 237, 0.98);
  transform: rotate(45deg);
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.main-navigation .sub-menu a {
  min-height: 42px;
  width: 100%;
  justify-content: flex-start;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  white-space: normal;
}

.main-navigation .sub-menu a:hover {
  background: rgba(122, 31, 31, 0.1);
  color: var(--maroon);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher select {
  width: 104px;
  min-height: 44px;
  padding: 10px 30px 10px 13px;
  border: 1px solid rgba(122, 31, 31, 0.13);
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--maroon) 50%) right 17px center / 5px 5px no-repeat,
    linear-gradient(135deg, var(--maroon) 50%, transparent 50%) right 13px center / 5px 5px no-repeat,
    rgba(255, 255, 255, 0.72);
  color: var(--maroon);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.language-switcher select:focus {
  outline: 2px solid rgba(255, 122, 0, 0.32);
  outline-offset: 2px;
}

.language-switcher select option {
  color: var(--ink);
  background: var(--white);
}

/*
 * Legacy cleanup: previous language list markup used .language-list.
 * Keep it hidden if cached HTML appears briefly after deploy.
 */
.language-list {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--maroon);
  box-shadow: 0 10px 24px rgba(74, 29, 8, 0.1);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.header-donate {
  flex: 1 1 0;
  justify-content: flex-end;
  width: fit-content;
  max-width: max-content;
  margin-left: auto;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  box-shadow: 0 16px 32px rgba(255, 122, 0, 0.25);
  white-space: nowrap;
}

.btn,
.wp-block-button__link,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--saffron);
  color: var(--white);
  font-family: var(--body);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.22);
}

.btn:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.btn.header-donate {
  flex: 1 1 0;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  margin-left: auto;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron), #d85a00);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(255, 122, 0, 0.28);
}

.btn.header-donate:hover {
  box-shadow: 0 20px 42px rgba(255, 122, 0, 0.34);
}

.btn-secondary {
  background: var(--maroon);
  box-shadow: 0 12px 24px rgba(122, 31, 31, 0.2);
}

.btn-light {
  background: var(--white);
  color: var(--maroon);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(26, 18, 11, 0.88), rgba(122, 31, 31, 0.67), rgba(26, 18, 11, 0.25)),
    url("assets/images/gallery/banner.png") center/cover;
}

.hero-kumbh {
  background:
    linear-gradient(90deg, rgba(26, 18, 11, 0.9), rgba(122, 31, 31, 0.66), rgba(255, 122, 0, 0.22)),
    url("assets/images/gallery/banner.png") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 80px 0 130px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.page-hero h1,
.section-title h2,
h1,
h2,
h3 {
  font-family: var(--heading);
  line-height: 1.16;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.3rem);
  max-width: 860px;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.sanskrit-quote {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 16px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.1);
  color: #ffe6a0;
  font-family: var(--heading);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.86rem;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: #fff2dc;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-title {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--maroon);
  font-size: clamp(1.85rem, 4vw, 3.25rem);
}

.section-dark .section-title h2 {
  color: var(--gold);
}

.section-title p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.impact-grid,
.card-grid,
.campaign-grid,
.footer-grid,
.program-grid {
  display: grid;
  gap: 22px;
}

.impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -72px;
  position: relative;
  z-index: 3;
}

.impact-card,
.feature-card,
.campaign-card,
.testimonial-card,
.article-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.impact-card {
  padding: 26px;
  min-height: 150px;
}

.impact-card strong {
  display: block;
  color: var(--maroon);
  font-family: var(--heading);
  font-size: 2.2rem;
  line-height: 1;
}

.impact-card span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 600;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.image-stack img,
.feature-card img,
.campaign-card img,
.article-card img,
.gallery-grid img,
.core-initiative-card img,
.gallery-event-card img,
.gallery-album-thumb img,
.gallery-album-thumb video,
.gallery-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-stack img:first-child {
  height: 430px;
}

.image-stack img:last-child {
  height: 310px;
  margin-bottom: 34px;
  border: 6px solid var(--cream);
}

.mission-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mission-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
}

.hindi-brief {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hindi-brief .section-title {
  margin-bottom: 26px;
}

.hindi-content-stack {
  display: grid;
  gap: 24px;
}

.hindi-brief h2 span,
.section-title h2 span {
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
}

.hindi-lead,
.hindi-note,
.hindi-quote {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.9;
}

.hindi-lead {
  margin: 0 0 30px;
}

.hindi-note {
  margin: 24px 0 0;
  font-style: italic;
}

.hindi-quote {
  margin: 0 0 28px;
  padding: 0 0 0 20px;
  border-left: 4px solid var(--gold);
  color: var(--maroon);
  font-style: italic;
  font-weight: 600;
}

.hindi-outline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hindi-outline li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.8);
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.8;
}

.hindi-outline li::before {
  content: "o";
  position: absolute;
  left: 22px;
  top: 18px;
  color: var(--maroon);
  font-weight: 700;
}

.hindi-outline strong {
  color: var(--maroon);
}

.nav-directory {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.nav-directory a {
  display: grid;
  gap: 4px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--maroon);
  font-weight: 800;
}

.nav-directory a span {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.core-initiative-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.core-initiative-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.core-initiative-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.core-initiative-card div {
  padding: 22px;
}

.core-initiative-card h3 {
  margin: 0 0 10px;
  color: var(--maroon);
  font-size: 1.28rem;
}

.core-initiative-card p {
  margin: 0;
  color: var(--muted);
}

.kumbh-layout,
.split-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.slab-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 220, 0.88)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.22), transparent 42%);
  box-shadow: var(--shadow);
}

.slab-panel h2,
.slab-panel h3 {
  margin: 0 0 18px;
  color: var(--maroon);
  font-size: 1.55rem;
}

.slab-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

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

.slab-grid a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--maroon);
  font-weight: 800;
  text-align: center;
}

.dashboard-band {
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.82), rgba(255, 242, 220, 0.95)),
    url("assets/images/gallery/kumbh/IMG_20250213_121917.jpg.jpeg") center/cover fixed;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-card {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(122, 31, 31, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.dashboard-card span,
.dashboard-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-card strong {
  display: block;
  margin: 8px 0;
  color: var(--maroon);
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.feature-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius) var(--radius) 0 0;
}

.feature-card-body {
  padding: 22px;
}

.feature-card > .feature-card-body,
.gallery-event-card > .feature-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card h3,
.campaign-card h3,
.article-card h3 {
  margin: 0 0 10px;
  color: var(--maroon);
  font-size: 1.25rem;
}

.feature-card p,
.campaign-card p,
.article-card p {
  color: var(--muted);
  margin: 0;
}

.feature-card > .feature-card-body > .btn,
.gallery-event-card > .feature-card-body > .btn {
  margin-top: auto;
}

.campaign-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaign-card {
  overflow: hidden;
}

.campaign-card img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius) var(--radius) 0 0;
}

.campaign-body {
  padding: 24px;
}

.progress {
  height: 9px;
  margin: 16px 0 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #edd9bd;
}

.progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-band {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(26, 18, 11, 0.72), rgba(26, 18, 11, 0.72)),
    url("assets/images/gallery/shiv-mahapuran/20250518_212319.jpg.jpeg") center/cover;
}

.play-button {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--white);
  color: var(--maroon);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(122, 31, 31, 0.92), rgba(255, 122, 0, 0.78)),
    url("assets/images/gallery/kumbh/IMG_20250213_121913.jpg.jpeg") center/cover;
  color: var(--white);
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.page-hero {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(26, 18, 11, 0.86), rgba(122, 31, 31, 0.72)),
    url("assets/images/gallery/kumbh/IMG_20250213_121917.jpg.jpeg") center/cover;
  color: var(--white);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.content-area {
  padding: 76px 0;
}

.entry-content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 44px);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
}

.donation-panel,
.contact-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

.donation-panel,
.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.donation-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.95rem;
}

.donation-status:not(:empty) {
  display: block;
}

.donation-status.is-success {
  border-color: rgba(34, 126, 69, 0.32);
  background: rgba(34, 126, 69, 0.1);
  color: #1c6b3c;
}

.donation-status.is-error {
  border-color: rgba(177, 41, 41, 0.34);
  background: rgba(177, 41, 41, 0.1);
  color: #8d2020;
}

button:disabled,
.btn:disabled,
input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-grid a {
  position: relative;
  display: block;
  margin-bottom: 18px;
  break-inside: avoid;
}

.gallery-grid img {
  min-height: 180px;
}

.gallery-grid a span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(26, 18, 11, 0.74);
  color: var(--white);
  font-weight: 800;
  font-size: 0.86rem;
}

.media-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.media-filter a,
.media-filter span,
.event-date {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--maroon);
  font-weight: 800;
  font-size: 0.82rem;
}

.media-filter a:hover {
  background: var(--maroon);
  color: var(--white);
}

.event-card-grid,
.gallery-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.event-card-image,
.gallery-event-card > a {
  position: relative;
  display: block;
  overflow: hidden;
}

.event-card-image img,
.gallery-event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.gallery-event-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.activity-hero {
  background-position: center;
  background-size: cover;
}

.activity-hero .btn {
  margin-top: 14px;
}

.activity-impact {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.activity-card {
  position: relative;
  min-height: 230px;
}

.activity-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 50%;
  color: var(--maroon);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(212, 175, 55, 0.2));
  font-family: "Noto Sans Devanagari", var(--body);
  font-size: 1.2rem;
  font-weight: 800;
}

.beneficiary-strip {
  align-self: stretch;
  border-left: 5px solid var(--gold);
}

.activity-gallery .gallery-event-card {
  min-height: 0;
}

.activity-gallery .gallery-event-card > a {
  height: 100%;
}

.activity-gallery .gallery-event-card img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.gallery-folder-filter .is-active {
  background: var(--maroon);
  color: var(--white);
}

.gallery-album-thumb {
  position: relative;
}

.gallery-album-thumb img,
.gallery-album-thumb video,
.gallery-video-frame video {
  display: block;
  border-radius: 0;
}

.gallery-video-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-video-frame video {
  width: 100%;
  height: 100%;
}

.page-banner-same-home {
  background-position: center;
  background-size: cover;
}

.testimonial-grid .testimonial-card p {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.85;
}

.testimonial-grid .testimonial-card h3 {
  margin-bottom: 0;
  color: var(--maroon);
  font-family: var(--body);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn.btn-outline {
  color: var(--maroon);
  background: transparent;
  border: 1px solid rgba(122, 31, 31, 0.28);
  box-shadow: none;
}

.media-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(26, 18, 11, 0.76);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.event-meta-line {
  margin-top: 12px;
  color: var(--maroon);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--maroon);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.event-detail-list {
  display: grid;
  gap: 24px;
}

.event-detail-panel,
.event-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.event-detail-panel {
  scroll-margin-top: 110px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.event-detail-panel img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.event-facts {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.event-facts div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.72);
}

.event-facts dt {
  color: var(--muted);
  font-weight: 800;
}

.event-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.event-single-content img {
  width: 100%;
  margin-bottom: 24px;
  border-radius: var(--radius);
}

.event-sidebar {
  position: sticky;
  top: 104px;
}

.video-list {
  display: grid;
  gap: 12px;
}

.video-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.72);
}

.play-mini {
  display: inline-grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
}

.qr-box {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 30px;
  border: 1px dashed rgba(122, 31, 31, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  box-shadow: var(--shadow);
}

.qr-box span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.qr-box strong {
  display: grid;
  width: min(210px, 100%);
  aspect-ratio: 1;
  place-items: center;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(122, 31, 31, 0.12) 50%, transparent 0) 0 0 / 18px 18px,
    linear-gradient(rgba(122, 31, 31, 0.12) 50%, transparent 0) 0 0 / 18px 18px,
    #fff8ed;
  color: var(--maroon);
  box-shadow: inset 0 0 0 1px var(--line);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #160f09;
}

.footer-main {
  padding: 68px 0 36px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
}

.site-footer h3,
.site-footer h2 {
  margin-top: 0;
  color: var(--gold);
  font-family: var(--heading);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 9px;
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  min-width: 0;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.sticky-donate {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.kumbh-campaign-hero {
  min-height: calc(100svh - 82px);
  background-position: center;
  background-size: cover;
}

.kumbh-campaign-hero .hero-content {
  width: min(900px, 100%);
}

.kumbh-campaign-hero h1 {
  font-size: clamp(2.15rem, 5.6vw, 4.85rem);
}

.kumbh-impact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kumbh-icon-card,
.kumbh-sponsor-card,
.kumbh-food-card {
  min-height: 235px;
}

.kumbh-icon-card h3,
.kumbh-sponsor-card h3,
.kumbh-food-card h3,
.timeline-item h3 {
  margin: 10px 0;
  color: var(--maroon);
}

.kumbh-icon-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.kumbh-icon-card:hover,
.kumbh-sponsor-card:hover,
.kumbh-food-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(74, 29, 8, 0.18);
}

.kumbh-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kumbh-testimonials {
  margin-top: 28px;
}

.kumbh-arogya h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.85rem, 4vw, 3.25rem);
}

.kumbh-arogya p {
  color: rgba(255, 255, 255, 0.78);
}

.kumbh-health-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kumbh-pdf-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.96), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.12), transparent 36%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.16), transparent 42%);
}

.kumbh-pdf-section .row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.kumbh-pdf-section .g-4 {
  gap: 24px;
}

.kumbh-pdf-section .align-items-center {
  align-items: center;
}

.kumbh-pdf-section .col-lg-4,
.kumbh-pdf-section .col-lg-5,
.kumbh-pdf-section .col-lg-7,
.kumbh-pdf-section .col-lg-8,
.kumbh-pdf-section .col-md-6,
.kumbh-pdf-section .col-xl-4 {
  min-width: 0;
  grid-column: span 12;
}

.kumbh-pdf-hero {
  margin-bottom: 44px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(122, 31, 31, 0.94), rgba(255, 122, 0, 0.78)),
    url("assets/images/gallery/kumbh/IMG_20250213_121913.jpg.jpeg") center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.kumbh-pdf-hero h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.14;
}

.kumbh-pdf-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.kumbh-pdf-symbol {
  display: grid;
  width: min(210px, 100%);
  aspect-ratio: 1;
  place-items: center;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
  font-family: var(--heading);
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 1;
}

.kumbh-section-spacer {
  margin-top: 56px;
}

.kumbh-objective-card,
.kumbh-mission-card,
.kumbh-donation-card,
.kumbh-contact-card {
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.kumbh-objective-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
}

.kumbh-objective-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--saffron), var(--maroon));
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.kumbh-objective-card p,
.kumbh-mission-card p,
.kumbh-donation-card p,
.kumbh-contact-card p {
  margin: 0;
  color: var(--muted);
}

.kumbh-mission-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kumbh-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(74, 29, 8, 0.18);
}

.kumbh-mission-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.kumbh-mission-head small {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  color: var(--maroon);
  font-weight: 800;
}

.kumbh-mission-card h3,
.kumbh-donation-card h2,
.kumbh-contact-card h2 {
  margin: 0 0 12px;
  color: var(--maroon);
}

.kumbh-donation-contact {
  margin-top: 56px;
}

.kumbh-donation-card h3 {
  margin: 22px 0 14px;
  color: var(--maroon);
}

.kumbh-placeholder-grid {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 18px;
  margin-top: 22px;
}

.kumbh-bank-placeholder,
.kumbh-qr-placeholder {
  min-height: 170px;
  padding: 20px;
  border: 1px dashed rgba(122, 31, 31, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.82);
}

.kumbh-bank-placeholder span,
.kumbh-qr-placeholder span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kumbh-bank-placeholder strong,
.kumbh-qr-placeholder strong {
  display: block;
  color: var(--maroon);
  font-family: var(--heading);
  font-size: 1.35rem;
}

.kumbh-qr-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
}

.kumbh-qr-placeholder strong {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 8px solid rgba(212, 175, 55, 0.42);
  background: var(--white);
  color: var(--maroon);
}

.kumbh-contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 220, 0.9)),
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.14), transparent 42%);
}

.kumbh-contact-card h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.72rem);
  line-height: 1.45;
}

.kumbh-phone-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--maroon);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.kumbh-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kumbh-check-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 600;
}

.kumbh-check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--saffron);
  border-bottom: 3px solid var(--saffron);
  transform: rotate(-45deg);
}

.kumbh-bhandara-cta {
  background:
    linear-gradient(90deg, rgba(122, 31, 31, 0.93), rgba(255, 122, 0, 0.76)),
    url("assets/images/gallery/kumbh/IMG_20250213_121917.jpg.jpeg") center/cover;
}

.kumbh-bhandara-cta p,
.cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.activity-gallery .gallery-event-card {
  min-height: 260px;
}

.activity-gallery .gallery-event-card > a {
  height: 100%;
}

.activity-gallery .gallery-event-card img {
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius);
}

@media (min-width: 1201px) and (max-width: 1380px) {
  .header-inner {
    gap: 16px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .site-branding {
    min-width: 220px;
    gap: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .site-title {
    font-size: 1rem;
  }

  .site-description {
    font-size: 0.76rem;
  }

  .main-navigation a {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.9rem;
  }

  .main-navigation ul {
    gap: 8px;
  }

  .main-navigation .menu-item-has-children > a {
    padding-right: 12px;
  }

  .language-switcher select {
    width: 92px;
    min-height: 42px;
    padding-left: 10px;
  }

  .header-donate {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .kumbh-pdf-section .col-md-6 {
    grid-column: span 6;
  }
}

@media (min-width: 992px) {
  .kumbh-pdf-section .col-lg-4 {
    grid-column: span 4;
  }

  .kumbh-pdf-section .col-lg-5 {
    grid-column: span 5;
  }

  .kumbh-pdf-section .col-lg-7 {
    grid-column: span 7;
  }

  .kumbh-pdf-section .col-lg-8 {
    grid-column: span 8;
  }
}

@media (min-width: 1200px) {
  .kumbh-pdf-section .col-xl-4 {
    grid-column: span 4;
  }
}

@media (max-width: 1200px) {
  .header-inner {
    display: flex;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-branding {
    flex: 1 1 auto;
  }

  .header-center {
    flex: 0 0 auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    order: 3;
  }

  .main-navigation {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    display: none;
    max-height: calc(100svh - 104px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(122, 31, 31, 0.13);
    border-radius: 18px;
    background: rgba(255, 248, 237, 0.98);
    box-shadow: 0 26px 70px rgba(74, 29, 8, 0.2);
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation ul {
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 6px;
  }

  .main-navigation .language-switcher {
    margin-top: 8px;
  }

  .main-navigation .language-switcher select {
    width: 100%;
  }

  .main-navigation .sub-menu {
    position: static;
    min-width: 0;
    margin: 2px 0 8px 14px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-navigation .sub-menu::before {
    display: none;
  }

  .main-navigation a {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    white-space: normal;
  }

  .main-navigation a:hover {
    transform: none;
  }

  .main-navigation .menu-item-has-children > a::after {
    margin-left: auto;
  }

  .language-switcher {
    margin-left: 0;
  }

  .header-donate {
    flex: 0 0 auto;
    margin-left: 0;
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .impact-grid,
  .card-grid,
  .campaign-grid,
  .event-card-grid,
  .gallery-event-grid,
  .program-grid,
  .core-initiative-grid,
  .dashboard-grid,
  .footer-grid,
  .two-column,
  .kumbh-layout,
  .split-cta,
  .donation-panel,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-detail-panel,
  .event-single-layout {
    grid-template-columns: 1fr;
  }

  .event-sidebar {
    position: static;
  }

  .kumbh-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
    padding: 8px 0;
    gap: 10px;
  }

  .site-branding {
    min-width: 0;
    flex: 1 1 auto;
    order: 1;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 0.9rem;
  }

  .site-title {
    font-size: 1rem;
  }

  .site-description {
    display: none;
  }

  .language-switcher {
    order: 4;
    width: 100%;
  }

  .language-switcher select {
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .header-donate {
    order: 2;
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  .menu-toggle {
    order: 3;
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-content {
    padding: 62px 0 118px;
  }

  .section {
    padding: 62px 0;
  }

  .impact-grid,
  .card-grid,
  .campaign-grid,
  .event-card-grid,
  .gallery-event-grid,
  .program-grid,
  .core-initiative-grid,
  .dashboard-grid,
  .footer-grid,
  .two-column,
  .kumbh-layout,
  .split-cta,
  .donation-panel,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    margin-top: -52px;
  }

  .slab-grid {
    grid-template-columns: 1fr;
  }

  .hindi-outline li {
    padding-left: 44px;
  }

  .hindi-outline li::before {
    left: 17px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:first-child,
  .image-stack img:last-child {
    height: 280px;
    margin: 0;
    border: 0;
  }

  .newsletter {
    display: grid;
  }

  .event-facts div,
  .video-list a {
    grid-template-columns: 1fr;
  }

  .event-detail-panel img,
  .event-card-image img,
  .gallery-event-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .sticky-donate {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sticky-donate .btn {
    width: 100%;
  }

  .kumbh-mini-grid,
  .kumbh-health-stats,
  .kumbh-impact-grid {
    grid-template-columns: 1fr;
  }

  .kumbh-icon-card,
  .kumbh-sponsor-card,
  .kumbh-food-card {
    min-height: 0;
  }

  .kumbh-pdf-hero {
    padding: 24px;
  }

  .kumbh-pdf-symbol {
    width: 136px;
    margin: 0;
  }

  .kumbh-objective-card {
    grid-template-columns: 46px 1fr;
    padding: 20px;
  }

  .kumbh-objective-card span {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .kumbh-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .kumbh-qr-placeholder {
    min-height: 150px;
  }
}
