
body.home-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 153, 51, 0.12), transparent 26%),
    radial-gradient(circle at 100% 12%, rgba(6, 78, 59, 0.1), transparent 24%),
    linear-gradient(180deg, #f7f4ec 0%, #f8fafc 24%, #eef3f1 100%);
}

/* ===== Ticker (Home-only) ===== */
.home-page .ticker-bar {
  position: relative;
  background:
    radial-gradient(circle at 18% 50%, rgba(22, 163, 74, 0.12), transparent 55%),
    radial-gradient(circle at 82% 50%, rgba(220, 38, 38, 0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.34);
  overflow: hidden;
}

.home-page .ticker-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-60%);
  animation: tickerShine 6s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.55;
}

.home-page .ticker-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ticker-green), var(--ticker-red), var(--ticker-light-green), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.home-page .ticker-wrap {
  position: relative;
  z-index: 1;
}

.home-page .ticker-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.home-page .ticker-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--ticker-black), var(--ticker-green));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.18);
}

.home-page .ticker-label i {
  color: #fff;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.home-page .ticker-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.home-page .ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  padding: 2px 0;
  animation: tickerScroll 18s linear infinite;
}

.home-page .ticker-viewport:hover .ticker-track {
  animation-play-state: paused;
}

.home-page .ticker-group {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 0 0 auto;
  padding-right: 34px;
}

.home-page .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.95rem;
  opacity: 0.92;
}

.home-page .ticker-item i {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ticker-black);
  background: rgba(134, 239, 172, 0.45);
  border: 1px solid rgba(22, 163, 74, 0.28);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes tickerShine {

  0%,
  100% {
    transform: translateX(-60%);
  }

  50% {
    transform: translateX(60%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .ticker-track {
    animation: none;
  }
}

/* ===== Home Hero ===== */
.home-page .home-hero {
  position: relative;
  padding: 84px 0 56px;
  color: var(--home-hero-ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(198, 40, 40, 0.1), transparent 42%),
    radial-gradient(circle at 85% 22%, rgba(251, 146, 60, 0.12), transparent 60%),
    linear-gradient(135deg, var(--home-hero-surface-2) 0%, var(--home-hero-surface-3) 55%, var(--home-hero-surface-2) 100%);
  overflow: hidden;
}

.home-page .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(circle at 35% 30%, rgba(0, 0, 0, 1), transparent 60%);
}

.home-page .home-hero::after {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 30% 70%, rgba(251, 146, 60, 0.1), transparent 55%),
    radial-gradient(circle at 78% 62%, rgba(16, 185, 129, 0.12), transparent 60%);
  filter: blur(6px);
  opacity: 0.95;
  pointer-events: none;
}

.home-page .home-hero-inner {
  position: relative;
  z-index: 2;
}

.home-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.18);
  backdrop-filter: blur(10px);
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--home-party-red-deep);
}

.home-page .hero-badge i {
  color: var(--home-party-red);
}

.home-page .hero-title {
  margin-top: 18px;
  font-family: "Noto Sans Devanagari", "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.2px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

.home-page .hero-title .accent {
  color: var(--home-party-red);
  text-shadow: 0 10px 24px rgba(198, 40, 40, 0.12);
}

.home-page .hero-subtitle {
  margin-top: 14px;
  color: var(--home-hero-muted);
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.75;
}

.home-page .hero-points {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}

.home-page .hero-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #0f172a;
  font-weight: 750;
  line-height: 1.5;
}

.home-page .hero-points i {
  color: var(--home-party-red);
  margin-top: 2px;
  font-size: 1.05rem;
}

.home-page .hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.home-page .btn-home-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--home-party-red), var(--primary-green));
  box-shadow: 0 14px 32px rgba(153, 27, 27, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.home-page .btn-home-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 42px rgba(153, 27, 27, 0.24);
  color: #fff;
}

.home-page .btn-home-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--home-hero-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--home-hero-border);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-page .btn-home-secondary:hover {
  transform: translateY(-1px);
  background: #fff;
  color: var(--home-hero-ink);
}

.home-page .hero-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.home-page .metric-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--home-hero-border);
  backdrop-filter: blur(12px);
}

.home-page .metric-value {
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-page .metric-value i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.2);
  color: var(--home-party-red);
  font-size: 1.05rem;
}

.home-page .metric-label {
  color: var(--home-hero-muted);
  font-size: 0.9rem;
  margin-top: 4px;
  font-weight: 700;
}

.home-page .hero-media {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: end;
}

.home-page .hero-photo-card {
  position: relative;
  width: min(440px, 100%);
}

.home-page .hero-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  border: 1px solid var(--home-hero-border);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.16);
}

.home-page .hero-photo-badge {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #0f172a;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.12);
}

.home-page .hero-photo-badge i {
  color: var(--home-party-red);
}

.home-page .hero-quote {
  width: min(420px, 100%);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--home-hero-border);
  backdrop-filter: blur(12px);
  color: var(--home-hero-muted);
  line-height: 1.6;
  font-weight: 700;
}

.home-page .hero-quote strong {
  color: var(--home-hero-ink);
}

@media (max-width: 992px) {
  .home-page .home-hero {
    padding: 64px 0 44px;
  }

  .home-page .hero-media {
    justify-items: center;
    margin-top: 28px;
  }

  .home-page .hero-photo {
    height: 360px;
  }

  .home-page .hero-photo-card {
    width: min(520px, 100%);
  }

  .home-page .hero-metrics {
    max-width: none;
  }
}

@media (max-width: 576px) {
  .home-page .hero-metrics {
    grid-template-columns: 1fr;
  }

  .home-page .hero-photo {
    height: 320px;
  }
}

/* ===== Donate Spotlight ===== */
.home-page .donate-spotlight {
  position: relative;
  padding: 22px 0 34px;
}

.home-page .donate-spotlight-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.18), transparent 30%),
    linear-gradient(135deg, #06281f 0%, #0b3a2d 48%, #115e4a 100%);
  box-shadow: 0 28px 80px rgba(6, 40, 31, 0.26);
}

.home-page .donate-spotlight-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 66px 66px;
  opacity: 0.28;
  pointer-events: none;
}

.home-page .donate-kicker,
.home-page .donate-title,
.home-page .donate-copy,
.home-page .donate-actions,
.home-page .donate-highlights,
.home-page .donate-carousel-wrap,
.home-page .donate-visual-card {
  position: relative;
  z-index: 1;
}

.home-page .donate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #fee2e2;
  background: rgba(198, 40, 40, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.28);
}

.home-page .donate-title {
  margin-top: 18px;
  color: #fff;
  font-family: "Noto Sans Devanagari", "Outfit", system-ui, sans-serif;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  max-width: 15ch;
}

.home-page .donate-copy {
  margin-top: 16px;
  max-width: 58ch;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.02rem;
  line-height: 1.8;
}

.home-page .donate-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-page .btn-donate-primary,
.home-page .btn-donate-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-page .btn-donate-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--home-party-red), #ef4444);
  box-shadow: 0 18px 38px rgba(198, 40, 40, 0.28);
}

.home-page .btn-donate-primary:hover {
  color: #fff;
  transform: translateY(-2px);
}

.home-page .btn-donate-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.home-page .btn-donate-secondary:hover {
  color: #fff;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.home-page .donate-highlights {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-page .donate-highlight-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.home-page .donate-highlight-card strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.home-page .donate-highlight-card span {
  display: block;
  margin-top: 8px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.6;
  font-size: 0.95rem;
}

.home-page .donate-visual-card {
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.home-page .donate-visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.52);
  color: #d1fae5;
  font-weight: 800;
}

.home-page .donate-visual-stat {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-page .donate-visual-stat span {
  display: block;
  color: rgba(254, 243, 199, 0.82);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 0.74rem;
  font-weight: 700;
}

.home-page .donate-visual-stat strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.35;
}

.home-page .donate-visual-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-page .donate-mini-panel {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.home-page .donate-mini-panel i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 10px;
  color: #fef3c7;
  background: rgba(251, 146, 60, 0.18);
}

.home-page .donate-mini-panel span {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.home-page .donate-inline-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d1fae5;
  text-decoration: none;
  font-weight: 800;
}

.home-page .donate-inline-link:hover {
  color: #fff7ed;
}

.home-page .donate-carousel-wrap {
  margin-top: 26px;
  overflow: hidden;
  padding: 8px 0 2px;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.home-page .donate-carousel-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: donateCarousel 18s linear infinite;
}

.home-page .donate-carousel-wrap:hover .donate-carousel-track {
  animation-play-state: paused;
}

.home-page .donate-carousel-group {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
  padding-right: 14px;
}

.home-page .donate-carousel-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.home-page .donate-carousel-item i {
  color: #fde68a;
}

.home-page .donate-carousel-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

@keyframes donateCarousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .donate-carousel-track {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .home-page .donate-spotlight-shell {
    padding: 26px;
    border-radius: 28px;
  }

  .home-page .donate-title {
    max-width: none;
  }

  .home-page .donate-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .home-page .donate-spotlight {
    padding: 12px 0 24px;
  }

  .home-page .donate-spotlight-shell {
    padding: 22px 18px;
  }

  .home-page .donate-actions {
    flex-direction: column;
  }

  .home-page .btn-donate-primary,
  .home-page .btn-donate-secondary {
    width: 100%;
  }

  .home-page .donate-visual-card {
    padding: 22px 18px;
  }
}

/* ===== About Section (Home-only) ===== */
.home-page .about-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #64748b;
}

.home-page .about-title {
  font-family: "Noto Sans Devanagari", "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--primary-green);
}

.home-page .about-feature {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b 0%, #0f766e 60%, #064e3b 100%);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.16);
}

.home-page .about-feature-head {
  padding: 30px 22px 18px;
  display: flex;
  justify-content: center;
}

.home-page .about-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 6px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.home-page .about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-page .about-feature-body {
  padding: 22px 22px 26px;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.home-page .about-feature-title {
  color: #fff;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.home-page .about-feature-text {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.home-page .about-feature-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.home-page .about-stat {
  min-width: 150px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.home-page .about-stat-value {
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.2px;
}

.home-page .about-stat-label {
  font-size: 0.9rem;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.home-page .about-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #0f172a;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .about-feature-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  color: #0f172a;
}

.home-page .about-card {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(251, 146, 60, 0.06));
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-page .about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.1);
}

.home-page .about-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--card-accent, #10b981);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.home-page .about-card-title {
  color: #0f172a;
  font-weight: 900;
  margin-bottom: 8px;
}

.home-page .about-card-text {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 12px;
}

.home-page .about-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #0f172a;
  opacity: 0.85;
}

/* ===== Content Typography / Cards (Home-only) ===== */
.home-page .section-heading {
  margin-bottom: 10px;
}

.home-page .section-lead {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  max-width: 780px;
}

.home-page .icon-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.home-page .icon-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  color: #0f172a;
  font-weight: 700;
}

.home-page .icon-list li i {
  color: var(--accent-green);
  font-size: 1.1rem;
  margin-top: 2px;
}

.home-page .step-badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 26px;
  margin-top: 1px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: var(--primary-green);
  font-weight: 900;
  font-size: 0.9rem;
}

.home-page .panel-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .panel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
}

.home-page .quote-panel {
  background: linear-gradient(135deg, #ecfeff, #f0fdf4);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 18px;
  padding: 24px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.75;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .quote-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.12);
}

.home-page .form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(2, 6, 23, 0.06);
}

.home-page .accent-bar {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--home-party-red), #f87171);
  border-radius: 999px;
  margin: 12px 0 18px;
}

.home-page .accent-bg {
  background: #f8fafc;
}

.home-page .struggle-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f6);
}

.home-page .struggle-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.08);
}

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

.home-page .struggle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--home-party-red-deep);
  background: rgba(198, 40, 40, 0.09);
  border: 1px solid rgba(198, 40, 40, 0.16);
}

.home-page .struggle-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 768px) {
  .home-page .struggle-grid {
    grid-template-columns: 1fr;
  }

  .home-page .mission-section .container,
  .home-page .conduct-section .container,
  .home-page .purpose-section .container,
  .home-page .contact-section-home .container,
  .home-page .social-mini-section .container,
  .home-page .about-section .container,
  .home-page .struggle-section .container,
  .home-page .connect-strip-section .container {
    padding: 18px 0;
    border-radius: 0;
  }
}

.home-page .section-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.home-page .section-visual img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .home-page .section-visual img {
    height: 200px;
  }
}

/* ===== Reveal animation (Home-only) ===== */
.home-page .reveal {
  opacity: 1;
  transform: none;
}

.js .home-page .reveal.reveal-ready {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .home-page .reveal.reveal-ready.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ===== Activities (Home-only) ===== */
.home-page .activity-card {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.12);
}

.home-page .activity-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary-green);
  font-size: 1.5rem;
  margin: 0 auto 14px;
}

/* ===== Homepage Polish ===== */
.home-page {
  background:
    radial-gradient(circle at 0% 0%, rgba(198, 40, 40, 0.06), transparent 22%),
    radial-gradient(circle at 100% 14%, rgba(251, 146, 60, 0.06), transparent 20%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.home-page .section-block,
.home-page .py-5 {
  position: relative;
}

.home-page .section-block>.container,
.home-page .donate-spotlight>.container {
  position: relative;
  z-index: 1;
}

.home-page .home-news-section,
.home-page .mission-section,
.home-page .conduct-section,
.home-page .purpose-section,
.home-page .contact-section-home,
.home-page .home-activities-section {
  background: transparent !important;
}

.home-page .mission-section .container,
.home-page .conduct-section .container,
.home-page .purpose-section .container,
.home-page .contact-section-home .container,
.home-page .social-mini-section .container,
.home-page .about-section .container,
.home-page .struggle-section .container,
.home-page .connect-strip-section .container {
  padding: 22px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .section-heading {
  font-family: "Noto Sans Devanagari", "Outfit", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #102a43;
}

.home-page .section-lead {
  color: #526375;
  max-width: 68ch;
}

.home-page .tag-pill {
  color: #8a3c12;
  background: rgba(255, 153, 51, 0.12);
  border-color: rgba(255, 153, 51, 0.22);
  box-shadow: 0 12px 24px rgba(255, 153, 51, 0.12);
}

.home-page .panel-card,
.home-page .form-card,
.home-page .struggle-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 247, 0.98));
  border-color: rgba(15, 67, 107, 0.1);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.home-page .about-card,
.home-page .contact-card,
.home-page .conduct-card,
.home-page .purpose-card,
.home-page .activity-card {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.home-page .panel-card:hover,
.home-page .form-card:hover,
.home-page .struggle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.1);
}

.home-page .mini-news-thumb {
  width: 116px;
  height: 94px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  flex: 0 0 auto;
}

.home-page .mini-news-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 245, 0.98));
}

.home-page .side-info-card {
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 28%),
    #fff;
}

.home-page .home-news-shell {
  position: relative;
  padding: 14px;
  border-radius: 12px;
  background: #f4f4f4;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.home-page .home-news-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22));
  pointer-events: none;
}

.home-page .home-news-top,
.home-page .home-news-bottom {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.home-page .home-news-top {
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.83fr);
  margin-bottom: 18px;
}

.home-page .home-news-bottom {
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
}

.home-page .home-news-hero-card,
.home-page .home-news-stack-card,
.home-page .home-news-whats-card,
.home-page .home-news-social-card,
.home-page .home-news-recent-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.home-page .home-news-hero-card {
  min-height: 470px;
}

.home-page .home-news-hero-image,
.home-page .home-news-stack-image,
.home-page .home-news-recent-story img,
.home-page .home-news-whats-feature img,
.home-page .home-news-whats-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Ensure hero image displays with contained aspect and fixed height to match design */
.home-page .home-news-hero-card::before,
.home-page .home-news-stack-card::before,
.home-page .home-news-recent-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.08) 42%, rgba(6, 11, 19, 0.9) 100%);
  z-index: 1;
}

.home-page .home-news-hero-overlay,
.home-page .home-news-stack-overlay,
.home-page .home-news-recent-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.home-page .home-news-hero-tag,
.home-page .home-news-stack-tag,
.home-page .home-news-mini-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: #ff2a43;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .home-news-stack-tag.tech {
  background: #2dd400;
}

.home-page .home-news-stack-tag.vogue {
  background: #a52de2;
}

.home-page .home-news-hero-meta,
.home-page .home-news-stack-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 600;
}

.home-page .home-news-hero-title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.7rem, 3.1vw, 2.55rem);
  line-height: 1.08;
  max-width: 680px;
}

.home-page .home-news-hero-copy,
.home-page .home-news-stack-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
  font-size: 0.92rem;
  max-width: 52ch;
}

.home-page .home-news-hero-link,
.home-page .home-news-stack-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.home-page .home-news-top-stack {
  display: grid;
  gap: 14px;
}

.home-page .home-news-stack-card {
  min-height: 228px;
}

.home-page .home-news-stack-card.compact {
  min-height: 168px;
}

.home-page .home-news-stack-card h5,
.home-page .home-news-recent-overlay h5 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.18;
  font-weight: 900;
}

.home-page .home-news-stack-card.compact h5,
.home-page .home-news-recent-overlay h5 {
  font-size: 1.25rem;
}

.home-page .home-news-whats-card,
.home-page .home-news-social-card,
.home-page .home-news-recent-card {
  padding: 16px;
}

.home-page .home-news-whats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Grid post thumbnail used in Latest Posts section */
.post-grid-image {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f8f9fa;
}

.home-page .home-news-stack-card {
  border-radius: 8px;
}

.home-page .home-news-stack-overlay {
  left: 14px;
  right: 14px;
  bottom: 14px;
}

.home-page .home-news-whats-head h3,
.home-page .home-news-recent-card h4 {
  margin: 0;
  color: #102060;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.home-page .home-news-whats-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #102060;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-page .home-news-whats-tabs span.active {
  color: #ff2a43;
}

.home-page .home-news-whats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.95fr);
  gap: 16px;
}

.home-page .home-news-whats-feature img {
  height: 286px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.home-page .home-news-whats-feature h4 {
  margin: 0 0 8px;
  color: #102060;
  font-size: 1.9rem;
  line-height: 1.08;
  font-weight: 900;
}

.home-page .home-news-whats-meta {
  margin-bottom: 8px;
  color: #8b91a2;
  font-size: 0.8rem;
  font-weight: 600;
}

.home-page .home-news-whats-feature p {
  margin: 0;
  color: #293247;
  font-size: 0.96rem;
  line-height: 1.7;
}

.home-page .home-news-whats-list {
  display: grid;
  gap: 14px;
  align-content: start;
}

.home-page .home-news-whats-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f5;
}

.home-page .home-news-whats-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-page .home-news-whats-item img {
  width: 92px;
  height: 82px;
  border-radius: 4px;
}

.home-page .home-news-whats-item h5 {
  margin: 4px 0 8px;
  color: #102060;
  font-size: 1rem;
  line-height: 1.32;
  font-weight: 800;
}

.home-page .home-news-whats-item small {
  color: #9aa3b2;
  font-size: 0.76rem;
  font-weight: 600;
}

.home-page .home-news-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
}

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

.home-page .home-news-social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #edf0f5;
}

.home-page .home-news-social-item i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  font-size: 0.9rem;
}

.home-page .home-news-social-item.facebook i {
  background: #1877f2;
}

.home-page .home-news-social-item.twitter i {
  background: #1da1f2;
}

.home-page .home-news-social-item.instagram i {
  background: #c13584;
}

.home-page .home-news-social-item.youtube i {
  background: #ff0000;
}

.home-page .home-news-social-item strong {
  display: block;
  color: #102060;
  font-size: 0.92rem;
  line-height: 1.1;
}

.home-page .home-news-social-item span {
  display: block;
  color: #8b91a2;
  font-size: 0.7rem;
}

.home-page .home-news-recent-card h4 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.home-page .home-news-recent-story {
  position: relative;
  min-height: 230px;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 1199.98px) {
  .home-page .home-news-top,
  .home-page .home-news-bottom,
  .home-page .home-news-whats-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-news-top-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .home-page .home-news-shell {
    padding: 10px;
  }

  .home-page .home-news-hero-card {
    min-height: 360px;
  }

  .home-page .home-news-top-stack {
    grid-template-columns: 1fr;
  }

  .home-page .home-news-hero-title {
    font-size: 1.95rem;
  }

  .home-page .home-news-whats-head h3 {
    font-size: 1.7rem;
  }

  .home-page .home-news-whats-tabs {
    gap: 10px;
  }

  .home-page .home-news-whats-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .home-page .home-news-whats-item img {
    width: 76px;
    height: 72px;
  }

  .home-page .home-news-social-grid {
    grid-template-columns: 1fr;
  }
}

.home-page .home-news-section::before,
.home-page .mission-section::before,
.home-page .conduct-section::before,
.home-page .purpose-section::before,
.home-page .contact-section-home::before,
.home-page .home-activities-section::before,
.home-page .home-membership-section::before {
  content: "";
  position: absolute;
  inset: 20px 0;
  pointer-events: none;
  z-index: 0;
}

.home-page .home-news-section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2));
}

.home-page .mission-section::before,
.home-page .purpose-section::before,
.home-page .contact-section-home::before,
.home-page .home-activities-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5));
}

.home-page .conduct-section::before {
  background:
    radial-gradient(circle at 90% 15%, rgba(16, 185, 129, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5));
}

.home-page .mission-section .container,
.home-page .purpose-section .container,
.home-page .conduct-section .container,
.home-page .contact-section-home .container,
.home-page .home-news-section .container,
.home-page .home-activities-section .container,
.home-page .home-membership-section .container {
  position: relative;
  z-index: 1;
}

.home-page .social-mini-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1), transparent 20%),
    radial-gradient(circle at 80% 0%, rgba(239, 68, 68, 0.08), transparent 18%),
    linear-gradient(135deg, #eef4ff 0%, #f8fafc 100%);
}

.home-page .social-mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.home-page .social-mini-card h6 {
  padding: 20px 20px 0;
  font-weight: 900;
  color: #0f172a;
}

.home-page .social-mini-embed {
  padding: 20px;
}

.home-page .social-mini-placeholder {
  min-height: 280px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
  border: 1px dashed rgba(148, 163, 184, 0.36);
}

.home-page .news-spotlight-shell {
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.08);
}

.home-page .news-spotlight-head {
  margin-bottom: 24px;
}

.home-page .news-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.home-page .news-feature-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.home-page .news-feature-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f1f5f9; 
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  
  /* Image ke hisab se height badhegi */
  height: auto; 
  
  /* --- HEIGHT RATIO LOCK --- */
  /* Yeh image ki height ko maximum 2:3 ratio par lock kar dega */
  /* Formula: Width (100%) * 3/2 = 150% of width */
  max-height: calc(100% * 3 / 2); 
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .news-feature-card__media img {
  /* No stretch, no crop magic */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  
  object-fit: contain; 
  display: block;
}

.home-page .news-feature-card__body {
  padding: 22px;
}

.home-page .news-feature-card__summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}

.home-page .news-feature-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.home-page .news-feature-card__copy {
  min-width: 0;
}

.home-page .news-feature-card__tags,
.home-page .latest-post-card__tags,
.home-page .news-trending-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-page .news-pill-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-page .news-pill-tag.is-light {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(148, 163, 184, 0.18);
  color: #102a43;
}

.home-page .news-pill-tag.is-muted {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.18);
  color: #065f46;
}

.home-page .news-feature-card__meta,
.home-page .latest-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}

.home-page .latest-post-card__meta {
  color: #64748b;
}

.home-page .news-feature-card__meta i,
.home-page .latest-post-card__meta i {
  margin-right: 6px;
}

.home-page .news-feature-card h3 {
  margin: 0;
  max-width: none;
  color: #0f172a;
  font-weight: 900;
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.home-page .news-feature-card p {
  margin: 8px 0 0;
  max-width: 72ch;
  color: #526375;
  font-size: 0.94rem;
  line-height: 1.72;
}

.home-page .news-feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.home-page .news-action-btn {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9rem;
}

.home-page .news-action-btn.is-primary {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}

.home-page button.news-action-btn {
  appearance: none;
  cursor: pointer;
}

.home-page .news-spotlight-side {
  display: grid;
  gap: 18px;
}

.home-page .news-side-list-card,
.home-page .latest-post-card,
.home-page .news-empty-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.home-page .news-side-list-card,
.home-page .news-follow-strip {
  padding: 18px;
}

.home-page .news-side-list-card__head,
.home-page .latest-posts-head,
.home-page .news-trending-strip__inner,
.home-page .news-follow-strip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.home-page .news-side-list-card__head h5,
.home-page .news-follow-strip__head h5 {
  margin: 0;
  color: #0f172a;
  font-weight: 900;
}

.home-page .news-side-list-card__head span,
.home-page .news-follow-strip__head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-page .news-follow-strip {
  margin-top: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.home-page .news-follow-strip__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.home-page .news-follow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .news-follow-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.home-page .news-follow-item i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
}

.home-page .news-follow-item.is-facebook i { background: #1877f2; }
.home-page .news-follow-item.is-instagram i { background: linear-gradient(135deg, #fd1d1d, #e1306c, #f77737); }
.home-page .news-follow-item.is-youtube i { background: #ff0000; }
.home-page .news-follow-item.is-twitter i { background: #111827; }

.home-page .news-follow-item strong,
.home-page .latest-post-card h5,
.home-page .news-side-story h6 {
  display: block;
  color: #0f172a;
  font-weight: 800;
}

.home-page .news-follow-item small,
.home-page .news-side-story small {
  color: #64748b;
}

.home-page .news-side-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.home-page .news-side-story {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.home-page .news-side-story img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
}

.home-page .news-side-story__label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.home-page .news-side-story h6 {
  margin: 0 0 8px;
  line-height: 1.45;
  font-size: 1rem;
}

.home-page .news-empty-card {
  padding: 42px 24px;
  text-align: center;
}

.home-page .news-empty-card h4 {
  margin-bottom: 10px;
  font-weight: 900;
  color: #0f172a;
}

.home-page .news-empty-mini {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.92rem;
}

.home-page .latest-posts-section {
  padding-top: 8px;
}

.home-page .latest-posts-head {
  margin-bottom: 24px;
}

.home-page .latest-post-card {
  overflow: hidden;
  height: 100%;
}

.home-page .latest-post-card__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.home-page .latest-post-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: calc(100% - 260px);
}

.home-page .latest-post-card h5 {
  margin: 0;
  line-height: 1.42;
  font-size: 1.12rem;
}

.home-page .latest-post-card p {
  margin: 0;
  color: #526375;
  line-height: 1.8;
}

.home-page .latest-post-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #166534;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1199.98px) {
  .home-page .news-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .home-page .news-follow-strip__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .home-page .news-spotlight-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .home-page .news-feature-card {
    border-radius: 22px;
  }

  .home-page .news-feature-card__body {
    padding: 18px;
  }

  .home-page .news-feature-card__summary {
    grid-template-columns: 1fr;
  }

  .home-page .news-feature-card__avatar {
    width: 44px;
    height: 44px;
  }

  .home-page .news-feature-card h3 {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .home-page .news-follow-strip__row {
    grid-template-columns: 1fr;
  }

  .home-page .news-side-story {
    grid-template-columns: 1fr;
  }

  .home-page .news-side-story img {
    width: 100%;
    height: 180px;
  }

  .home-page .latest-post-card__media img {
    height: 220px;
  }

  .home-page .latest-post-card__body {
    height: auto;
  }
}

.home-page .mission-section .quote-panel,
.home-page .purpose-section .quote-panel {
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 30%),
    linear-gradient(135deg, #ecfeff, #f0fdf4);
}

.home-page .conduct-section .panel-card {
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.home-page .focus-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(16, 185, 129, 0.16), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(239, 68, 68, 0.1), transparent 18%),
    linear-gradient(135deg, #f5fbf7, #eef6f1 58%, #fff7f5 100%);
}

.home-page .focus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  pointer-events: none;
}

.home-page .focus-section .container {
  position: relative;
  z-index: 1;
}

.home-page .focus-section-head {
  margin-bottom: 28px !important;
}

.home-page .focus-section-copy {
  max-width: 58ch;
}

.home-page .focus-head-cta {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.home-page .focus-visual {
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
  height: calc(100% - 1.5rem);
}

.home-page .focus-visual img {
  height: 100%;
  min-height: 420px;
}

.home-page .focus-topic-card,
.home-page .focus-process-card {
  height: 100%;
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.08);
}

.home-page .focus-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #065f46;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.home-page .focus-section .struggle-item {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 244, 0.88));
  border: 1px solid rgba(16, 185, 129, 0.14);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-page .focus-section .struggle-item:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
}

.home-page .focus-process-card .icon-list {
  display: grid;
  gap: 14px;
}

.home-page .focus-process-card .icon-list li {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.home-page .focus-process-card .step-badge {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff;
  border: 0;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.22);
}

.home-page .focus-process-actions {
  padding-top: 8px;
}

.home-page .focus-section-head,
.home-page .focus-section-copy {
  min-width: 0;
}

.home-page .connect-strip-section {
  background:
    radial-gradient(circle at 0% 50%, rgba(16, 185, 129, 0.14), transparent 22%),
    radial-gradient(circle at 100% 50%, rgba(239, 68, 68, 0.14), transparent 20%),
    linear-gradient(135deg, #f3fdf6, #fff4f2);
}

.home-page .struggle-badge,
.home-page .connect-strip-kicker,
.home-page .mission-kicker {
  max-width: 100%;
  white-space: normal;
  flex-wrap: wrap;
  row-gap: 6px;
}

.home-page .struggle-badge {
  justify-content: flex-start;
}

.home-page .focus-head-cta,
.home-page .connect-strip-cta {
  max-width: 100%;
  white-space: normal;
}

.home-page .contact-section-home .form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border-radius: 28px;
  padding: 32px;
}

.home-page .contact-section-home .form-control {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 14px 16px;
  box-shadow: none;
}

.home-page .contact-section-home .form-control:focus {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.home-page .contact-section-home .panel-card {
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 28%),
    #fff;
}

.home-page .home-activities-section .container.py-5 {
  position: relative;
  z-index: 1;
}

.home-page .home-activities-section .section-heading {
  margin-bottom: 18px;
}

.home-page .activity-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
}

.home-page .activity-card::before {
  content: "";
  display: block;
  height: 6px;
  margin: -1.5rem -1.5rem 1.25rem;
  background: linear-gradient(90deg, #16a34a, #ef4444, #fb923c);
  border-radius: 999px;
}

.home-page .home-membership-section {
  padding-top: 12px !important;
  padding-bottom: 64px !important;
}

.home-page .membership-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 38px 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(239, 68, 68, 0.14), transparent 22%),
    linear-gradient(135deg, #052e23 0%, #0a4736 55%, #111827 100%);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}

.home-page .membership-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.24;
  pointer-events: none;
}

.home-page .membership-cta-shell>* {
  position: relative;
  z-index: 1;
}

.home-page .membership-cta-shell h2 {
  color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.home-page .membership-cta-shell p {
  color: rgba(226, 232, 240, 0.82) !important;
  font-size: 1.02rem;
}

.home-page .membership-cta-shell .btn {
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.2);
}

@media (max-width: 991.98px) {
  .home-page .membership-cta-shell {
    padding: 30px 24px;
  }
}

@media (max-width: 767.98px) {
  .home-page .section-block {
    padding: 54px 0;
  }

  .home-page .mini-news-thumb {
    width: 96px;
    height: 82px;
  }

  .home-page .focus-section-head {
    align-items: stretch !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
  }

  .home-page .focus-section-copy {
    width: 100%;
  }

  .home-page .focus-visual {
    height: auto;
  }

  .home-page .focus-visual img {
    min-height: 260px;
  }

  .home-page .focus-topic-card,
  .home-page .focus-process-card {
    padding: 22px 18px;
  }

  .home-page .struggle-badge,
  .home-page .connect-strip-kicker,
  .home-page .mission-kicker {
    display: inline-flex;
    width: 100%;
    justify-content: flex-start;
    padding: 9px 14px;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .home-page .focus-head-cta,
  .home-page .connect-strip-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding-inline: 18px !important;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .home-page .connect-strip-section {
    padding: 56px 0;
  }

  .home-page .connect-strip-action {
    text-align: left !important;
  }

  .home-page .mission-section .section-heading {
    margin-top: 14px !important;
  }

  .home-page .contact-section-home .form-card {
    padding: 24px 18px;
  }

  .home-page .membership-cta-shell .btn {
    width: 100%;
  }
}

/* ==================== CSS GUIDE ==================== */
/* Global variables: color, spacing, and shared theme tokens. */
/* Layout sections: header, navigation, hero, content cards, forms, footer. */
/* Responsive blocks: media queries are kept near the related component. */
/* ==================== CSS GUIDE END ==================== */



/* Press / News Clippings */
.press-hero {
  background:
    radial-gradient(circle at 20% 15%, rgba(251, 146, 60, 0.25), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(16, 185, 129, 0.2), transparent 50%),
    linear-gradient(135deg, #0b2e2a 0%, #0f3a35 45%, #12463f 100%);
  color: #fff;
  padding: 90px 0 70px;
}

.press-hero-inner {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}

.press-hero-content {
  grid-column: span 7;
}

.press-hero-media {
  grid-column: span 5;
}

@media (max-width: 992px) {
  .press-hero-inner {
    grid-template-columns: 1fr;
  }
  .press-hero-content,
  .press-hero-media {
    grid-column: span 12;
  }
}

.press-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
}

.press-title {
  font-size: clamp(2.2rem, 2.5vw + 1.2rem, 3.2rem);
  font-weight: 800;
  margin: 16px 0 12px;
}

.press-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.press-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 576px) {
  .press-stats {
    grid-template-columns: 1fr;
  }
}

.press-stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
}

.press-stat strong {
  display: block;
  font-size: 1.25rem;
}

.press-tiles {
  display: grid;
  gap: 16px;
}

.press-tile {
  background: #fff8ec;
  border: 1px solid rgba(251, 146, 60, 0.3);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.15);
  color: #0f172a;
}

.press-tile span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9a3412;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.press-tile h6 {
  font-weight: 700;
  margin: 8px 0 6px;
}

.press-tile p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}

.press-strip {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.7)),
    url('img/gaganlodhi.png') center/cover no-repeat;
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

.press-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
}

.press-strip .container {
  position: relative;
  z-index: 1;
}

.press-section-title {
  font-weight: 800;
  color: #0f172a;
}

.clipping-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(12, 1fr);
}

.clipping-item {
  grid-column: span 4;
}

@media (max-width: 992px) {
  .clipping-item {
    grid-column: span 6;
  }
}

@media (max-width: 576px) {
  .clipping-item {
    grid-column: span 12;
  }
}

.clipping-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fffdf7;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.clipping-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  border-color: rgba(251, 146, 60, 0.5);
}

.clipping-thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.clipping-meta {
  padding: 16px 18px 18px;
  display: grid;
  gap: 8px;
}

.clipping-title {
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.clipping-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9a3412;
  background: rgba(251, 146, 60, 0.16);
  border: 1px solid rgba(251, 146, 60, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.clipping-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 40%, rgba(2, 6, 23, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  pointer-events: none;
}

.clipping-card:hover .clipping-overlay {
  opacity: 1;
}

.clipping-overlay span {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.clipping-modal-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.clipping-note {
  color: #64748b;
}

/* Press Posts (Facebook-style without like) */
.press-posts {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 992px) {
  .press-posts {
    grid-template-columns: 1fr;
  }
}

.press-posts.single {
  grid-template-columns: 1fr;
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.press-main {
  min-width: 0;
}

.press-side {
  min-width: 0;
}

@media (min-width: 992px) {
  .press-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
  }
}

.pin-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  margin-bottom: 16px;
}

.pin-card h6 {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.pin-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a3412;
  background: rgba(251, 146, 60, 0.18);
  border: 1px solid rgba(251, 146, 60, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pin-meta {
  color: #64748b;
  font-size: 0.85rem;
}

.post-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}

.post-card.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr);
}

.post-card.split.reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.15fr);
}

.post-card.split.reverse .post-media {
  order: 2;
}

.post-card.split.reverse .post-content {
  order: 1;
}

@media (max-width: 992px) {
  .post-card.split,
  .post-card.split.reverse {
    grid-template-columns: 1fr;
  }
  .post-card.split.reverse .post-media,
  .post-card.split.reverse .post-content {
    order: initial;
  }
}

.post-card.featured {
  grid-column: 1 / -1;
}

.post-card.featured .post-media {
  min-height: 380px;
}

.post-card.featured .post-body {
  font-size: 1.02rem;
}

.post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.4), rgba(16, 185, 129, 0.3), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 10px;
}

.post-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(16, 185, 129, 0.35);
}

.post-meta h6 {
  margin: 0;
  font-weight: 700;
  color: #0f172a;
}

.post-meta .small {
  color: #64748b;
}

.post-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.post-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #065f46;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.post-body {
  padding: 0 20px 16px;
  color: #334155;
  line-height: 1.7;
}

.post-media {
  position: relative;
  min-height: 320px;
  background: #0f172a;
}

.post-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.post-media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(2, 6, 23, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.post-content {
  display: flex;
  flex-direction: column;
}

.post-stats {
  padding: 14px 20px;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.9rem;
}

.comment-section {
  padding: 16px 20px 20px;
}

.comment-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-bubble {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 12px;
  flex: 1;
}

.comment-bubble h6 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.comment-bubble p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
}

.comment-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.comment-form .form-control {
  border-radius: 12px;
}

.comment-form .btn {
  border-radius: 12px;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .comment-fields {
    grid-template-columns: 1fr;
  }
}

.clipping-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.clipping-date {
  font-size: 0.85rem;
  color: #64748b;
}

.thanks-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  padding: 24px;
}

.thanks-card h4 {
  font-weight: 800;
  color: #0f172a;
}

.thanks-card p {
  color: #475569;
  margin: 0;
}

/* Compact social feed section (Homepage) */
.social-mini-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

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

.social-mini-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 14px;
}

.social-mini-card h6 {
  margin: 0 0 10px;
  font-weight: 800;
  color: #0f172a;
}

.social-mini-embed {
  min-height: 220px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(251, 146, 60, 0.06));
  padding: 8px;
}

.social-mini-placeholder {
  min-height: 200px;
  height: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: #475569;
  font-size: 0.9rem;
}

.social-mini-placeholder i {
  font-size: 1.3rem;
}

.social-view-modal-content {
  border: 0;
}

.social-post-modal-body {
  background: #f8fafc;
}

.social-post-modal-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}

.social-post-modal-media {
  width: 100%;
  height: min(70vh, 760px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #dbe3ed;
  background: #e5e7eb;
  margin-bottom: 14px;
}

.social-post-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
}

.social-post-modal-content {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  color: #334155;
  line-height: 1.75;
}

.social-post-modal-date {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .social-mini-grid {
    grid-template-columns: 1fr;
  }

  .social-post-modal-wrap {
    padding: 14px;
  }

  .social-post-modal-media {
    height: min(52vh, 420px);
    border-radius: 14px;
  }
}
