/* ==========================================================================
   Here Is Life Uganda - Core Stylesheet
   Modern, accessible, mobile-first design system
   ========================================================================== */

:root {
  --primary: #15803d;         /* NGO Forest Green */
  --primary-dark: #14532d;
  --primary-light: #22c55e;
  --primary-soft: #f0fdf4;
  --secondary: #d97706;       /* Warm Amber / Gold for Donate & Highlights */
  --secondary-hover: #b45309;
  --secondary-soft: #fef3c7;
  --accent-blue: #0284c7;     /* Tech / Education Blue */
  --dark: #0f172a;            /* Slate Dark */
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --transition: all 0.25s ease-in-out;
  --font-main: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--gray-50);
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--gray-900);
  color: var(--gray-400);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--gray-400);
}

.top-bar a:hover {
  color: var(--white);
}

.radio-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 119, 6, 0.2);
  color: #fbbf24;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-brand img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.brand-text h1 {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.brand-text span {
  font-size: 11px;
  color: var(--gray-600);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 22px;
}

.nav-menu li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 6px 4px;
  position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary);
}

.nav-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

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


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(217, 119, 6, 0.2);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--white);
}

.btn-outline {
  border-color: var(--gray-300);
  color: var(--gray-700);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gray-700);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Voice of Life FM Floating Audio Player Bar
   -------------------------------------------------------------------------- */
.radio-bar {
  background: linear-gradient(90deg, #064e3b 0%, #065f46 100%);
  color: var(--white);
  padding: 8px 0;
  border-bottom: 2px solid var(--secondary);
  font-size: 14px;
}

.radio-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.radio-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.play-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.play-toggle-btn:hover {
  transform: scale(1.08);
  background: #f59e0b;
}

.radio-bar-info {
  display: flex;
  flex-direction: column;
}

.radio-bar-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-bar-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.radio-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.radio-volume {
  display: flex;
  align-items: center;
  gap: 6px;
}

.radio-volume input[type=range] {
  accent-color: var(--secondary);
  width: 80px;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Hero Section & Carousel
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(rgba(15, 23, 42, 0.78), rgba(20, 83, 45, 0.85)), url('../images/Bible-translation-1.webp') center/cover no-repeat;
  background-color: #1e3a29;
  color: var(--white);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-slider-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  position: relative;
}

.hero-slide {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 95px 0 130px;
  position: relative;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 7s ease-out;
  transform: scale(1);
  z-index: 1;
}

.hero-slide.active .hero-bg {
  transform: scale(1.05);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
}

.badge-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fde047;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  margin-bottom: 34px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Carousel Controls */
.hero-nav-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.hero-nav-btn:hover {
  background: rgba(21, 128, 61, 0.9);
  border-color: #22c55e;
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
  left: 24px;
}

.hero-nav-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 74px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero-dot.active {
  background: #f59e0b;
  width: 34px;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .hero-nav-btn {
    display: none;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-slide {
    padding: 70px 0 110px;
  }
  .hero-dots {
    bottom: 66px;
  }
}

/* Stat Counters */
.stats-banner {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.stat-card {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--gray-100);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Section Layouts
   -------------------------------------------------------------------------- */
.section {
  padding: 70px 0;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
}

/* --------------------------------------------------------------------------
   Program Cards
   -------------------------------------------------------------------------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21, 128, 61, 0.3);
}

.program-thumb {
  height: 200px;
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}

.program-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-thumb img {
  transform: scale(1.05);
}

.program-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.program-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.program-body p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

/* --------------------------------------------------------------------------
   Forms (ESTA Application, Contact, Donations)
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--gray-900);
  transition: var(--transition);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 14px;
}

.form-feedback.success {
  display: block;
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-feedback.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--gray-900);
  color: var(--gray-400);
  padding: 70px 0 30px;
  margin-top: auto;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  /* Hide 1. Top Bar and 3. Persistent Live Radio Bar on tablet and mobile/smartphone devices */
  .top-bar,
  .radio-bar {
    display: none !important;
  }

  .nav-menu {
    gap: 16px;
  }
  .nav-menu li a {
    font-size: 14px;
  }
  .nav-actions {
    gap: 12px;
  }
}

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

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

  .hero h1 {
    font-size: 32px;
  }
}

/* --------------------------------------------------------------------------
   About Us Section (Matches Screenshot 2026-09-01 181906)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 80px 0 90px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--gray-200);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-title {
  font-size: 34px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin: 0;
}

.about-divider {
  width: 44px;
  height: 3.5px;
  background-color: var(--primary);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.about-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-content p:last-of-type {
  margin-bottom: 24px;
}

.about-checklist {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
}

.about-check-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-check-badge svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
}

.about-image-card {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.15), 0 8px 16px -6px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: var(--gray-100);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 40px -10px rgba(15, 23, 42, 0.22);
}

.about-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-title {
    font-size: 28px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-image-card {
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Latest News & Updates Page (Matches UI Mockup)
   -------------------------------------------------------------------------- */
.news-page {
  background-color: #f7faf3;
  padding-bottom: 60px;
}

.news-hero-wrap {
  padding-top: 32px;
  margin-bottom: 44px;
}

.news-hero-banner {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.15);
  background: #1e293b;
}

.news-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.news-hero-tabs {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}

.news-tab-link {
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.news-tab-link.active {
  background-color: #15803d;
  color: #ffffff;
  border: 1px solid #166534;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.news-tab-link.outline {
  background-color: rgba(30, 41, 59, 0.55);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.news-tab-link.outline:hover {
  background-color: rgba(30, 41, 59, 0.85);
  border-color: #ffffff;
  color: #ffffff;
}

/* Featured Story Card */
.featured-story-section {
  margin-bottom: 56px;
}

.featured-story-heading {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-story-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -4px rgba(0, 0, 0, 0.08);
}

.featured-thumb {
  position: relative;
  min-height: 350px;
  background-color: #e2e8f0;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-tag-impact {
  background: #dcfce7;
  color: #15803d;
}

.news-tag-esta {
  background: #dbeafe;
  color: #1d4ed8;
}

.news-tag-radio {
  background: #ffedd5;
  color: #c2410c;
}

.news-tag-wellness {
  background: #ccfbf1;
  color: #0f766e;
}

.news-tag-field {
  background: #fef08a;
  color: #854d0e;
}

.news-date {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

.featured-title {
  font-size: 27px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.featured-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.featured-title a:hover {
  color: #15803d;
}

.featured-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-link {
  font-size: 15px;
  font-weight: 700;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
}

.featured-link:hover {
  color: #166534;
  gap: 10px;
}

/* Main Layout: Recent Articles & Sidebar */
.news-main-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  align-items: start;
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.articles-title {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.view-switchers {
  display: flex;
  gap: 6px;
}

.view-btn {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
}

.view-btn.active, .view-btn:hover {
  color: #15803d;
  border-color: #15803d;
  background: #f0fdf4;
}

.news-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.news-articles-grid.list-view {
  grid-template-columns: 1fr;
}

.news-articles-grid.list-view .article-card {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.news-articles-grid.list-view .article-thumb {
  height: 100%;
  min-height: 200px;
}

.article-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -4px rgba(0, 0, 0, 0.08);
}

.article-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-card:hover .article-thumb img {
  transform: scale(1.05);
}

.article-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.article-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-date {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

.article-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 10px;
}

.article-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.article-title a:hover {
  color: #15803d;
}

.article-snippet {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #15803d;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.article-link:hover {
  color: #166534;
  gap: 8px;
}

.btn-load-more {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 8px;
  border: 1px solid #15803d;
  color: #15803d;
  background: #ffffff;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-load-more:hover {
  background: #15803d;
  color: #ffffff;
}

/* News Sidebar */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.widget-search {
  background: #f1f5f9;
}

.widget-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 14px;
}

.search-input-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
}

.sidebar-search-input {
  width: 100%;
  padding: 11px 12px 11px 38px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.sidebar-search-input:focus {
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.cat-item:hover, .cat-item.active {
  background: #f0fdf4;
  color: #15803d;
  font-weight: 600;
}

.cat-count {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 9999px;
}

.cat-item.active .cat-count {
  background: #15803d;
  color: #ffffff;
}

/* Newsletter Widget */
.widget-newsletter {
  background: #064e3b;
  color: #ffffff;
  padding: 30px 24px;
  border: none;
}

.newsletter-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.newsletter-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  outline: none;
}

.btn-newsletter {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #15803d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-newsletter:hover {
  background: #166534;
}

.newsletter-privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 4px;
}

/* Support Widget */
.widget-support {
  border: 1px dashed #cbd5e1;
  text-align: center;
  padding: 30px 20px;
}

.support-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0fdf4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.support-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.support-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.support-link {
  font-size: 14.5px;
  font-weight: 700;
  color: #15803d;
  text-decoration: none;
  transition: color 0.2s;
}

.support-link:hover {
  color: #166534;
  text-decoration: underline;
}

@media (max-width: 968px) {
  .news-main-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .featured-story-card {
    grid-template-columns: 1fr;
  }
  .featured-thumb {
    min-height: 240px;
  }
  .news-articles-grid {
    grid-template-columns: 1fr;
  }
  .news-hero-tabs {
    bottom: 18px;
  }
  .news-tab-link {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Homepage: Recent Articles Section (Matching UI Mockup)
   ========================================================================== */
.recent-articles-section {
  background-color: #f2f7ef;
  padding: 68px 0 76px 0;
  border-top: 1px solid #e2ede0;
  border-bottom: 1px solid #e2ede0;
}

.recent-articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #d4e5d1;
  margin-bottom: 28px;
}

.recent-articles-title {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.3px;
  margin: 0;
}

.recent-articles-header .view-switchers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent-articles-header .view-btn-clean {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease, transform 0.15s ease;
}

.recent-articles-header .view-btn-clean.active {
  color: #15803d;
}

.recent-articles-header .view-btn-clean:hover {
  color: #15803d;
  transform: scale(1.08);
}

.recent-articles-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px;
}

.recent-articles-grid .article-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.recent-articles-grid .article-thumb {
  height: 240px;
}

.recent-articles-grid .article-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.recent-articles-grid .article-title {
  min-height: 48px;
}

.recent-articles-grid .article-snippet {
  min-height: 64px;
}

.recent-articles-grid.list-view {
  grid-template-columns: 1fr !important;
}

.recent-articles-grid.list-view .article-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.recent-articles-grid.list-view .article-thumb {
  height: 100%;
  min-height: 220px;
}

.recent-articles-grid.list-view .article-title {
  min-height: auto;
}

.recent-articles-grid.list-view .article-snippet {
  min-height: auto;
}

.article-badge-solid {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 9px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff !important;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

.article-badge-esta {
  background: #15803d !important;
}

.article-badge-radio {
  background: #2b6cb0 !important;
}

.article-badge-water, .article-badge-impact {
  background: #0284c7 !important;
}

.article-badge-wellness {
  background: #0d9488 !important;
}

.article-badge-field {
  background: #d97706 !important;
}

.recent-articles-footer {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .recent-articles-grid {
    grid-template-columns: 1fr !important;
  }
  .recent-articles-grid.list-view .article-card {
    grid-template-columns: 1fr;
  }
  .recent-articles-grid.list-view .article-thumb {
    min-height: 200px;
  }
}

/* ==========================================================================
   Article Detail View (Matching UI Mockup Template)
   ========================================================================== */
.article-detail-section {
  padding: 44px 0 80px 0;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.article-cat-pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 9999px;
  background-color: #d1fae5;
  color: #065f46;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-cat-pill:hover {
  background-color: #a7f3d0;
  color: #047857;
}

.article-date-top {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

.article-main-headline {
  font-size: 42px;
  font-weight: 800;
  color: #065f46;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.article-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.article-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

.article-author-text {
  font-size: 14.5px;
  color: #334155;
}

.article-author-name {
  font-weight: 700;
  color: #0f172a;
}

.article-hero-media {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 44px;
  background-color: #0f172a;
}

.article-hero-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.article-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 34px 24px 16px 24px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 100%);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
}

.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}

.article-prose {
  font-size: 17px;
  line-height: 1.85;
  color: #334155;
}

.article-prose p {
  margin-bottom: 22px;
}

.article-prose .article-lead::first-letter {
  font-size: 56px;
  line-height: 1;
  float: left;
  margin-right: 12px;
  margin-top: 2px;
  font-weight: 800;
  color: #1e293b;
}

.article-quote-box {
  background: #f8fafc;
  border-left: 4px solid #15803d;
  border-radius: 8px;
  padding: 28px 32px;
  margin: 36px 0;
  position: relative;
}

.article-quote-box .quote-mark {
  font-size: 46px;
  color: #86efac;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -10px;
}

.article-quote-box .quote-text {
  font-size: 20px;
  font-weight: 700;
  color: #134e4a;
  line-height: 1.45;
  margin-bottom: 12px;
}

.article-quote-box .quote-author {
  font-size: 14px;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.article-inset-figure {
  margin: 36px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.article-inset-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-inset-figure figcaption {
  padding: 14px 20px;
  background: #ffffff;
  color: #475569;
  font-size: 13.5px;
  text-align: center;
  border-top: 1px solid #f1f5f9;
}

.article-share-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.article-share-label {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
}

.share-btn-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.share-btn-circle:hover {
  background: #f0fdf4;
  color: #15803d;
  border-color: #15803d;
  transform: translateY(-2px);
}

/* Sidebar Widgets */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-impact-card {
  background-color: #065f46;
  color: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 14px rgba(6, 95, 70, 0.2);
}

.sidebar-impact-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.sidebar-impact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.sidebar-impact-item:last-child {
  margin-bottom: 0;
}

.impact-check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #34d399;
  margin-top: 3px;
}

.impact-metric-val {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.impact-metric-lbl {
  font-size: 13.5px;
  color: #d1fae5;
  line-height: 1.4;
}

.sidebar-give-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.sidebar-give-title {
  font-size: 19px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.sidebar-give-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 22px;
}

.btn-give-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background-color: #2d5a57;
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-give-project:hover {
  background-color: #1e3d3b;
  color: #ffffff;
  transform: translateY(-2px);
}

.sidebar-related-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 22px;
}

.sidebar-related-title {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #334155;
  margin-bottom: 20px;
}

.related-story-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  text-decoration: none;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  transition: transform 0.2s ease;
}

.related-story-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-story-item:hover {
  transform: translateX(4px);
}

.related-story-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #f1f5f9;
}

.related-story-headline {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-story-item:hover .related-story-headline {
  color: #15803d;
}

.related-story-category {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 968px) {
  .article-main-headline {
    font-size: 32px;
  }
  .article-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   Homepage: Partners Section
   ========================================================================== */
.partners-section {
  padding: 68px 0 76px 0;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.partner-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.08);
  border-color: #15803d;
}

.partner-logo-box {
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.partner-logo-box img {
  max-height: 48px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.partner-card:hover .partner-logo-box img {
  transform: scale(1.05);
}

.partner-name {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 6px;
}

.partner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #15803d;
  background: #f0fdf4;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.partner-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.partner-visit-link {
  font-size: 13px;
  font-weight: 700;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.partner-card:hover .partner-visit-link {
  color: #166534;
  gap: 8px;
}

/* ==========================================================================
   Homepage: Testimonials Section with Avatars
   ========================================================================== */
.testimonials-section {
  padding: 68px 0 80px 0;
  background-color: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-icon {
  font-size: 48px;
  line-height: 1;
  color: #86efac;
  font-family: Georgia, serif;
  margin-bottom: -12px;
  opacity: 0.85;
}

.testimonial-quote-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #15803d;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  background: #e2e8f0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 15.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.testimonial-role {
  font-size: 13px;
  color: #15803d;
  font-weight: 600;
  margin-top: 2px;
}

.testimonial-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #0f766e;
  font-weight: 700;
  margin-top: 4px;
}

/* ==========================================================================
   Our Programs & Initiatives Page (Matching UI Mockups)
   ========================================================================== */
.programs-hero-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.92) 0%, rgba(15, 23, 42, 0.88) 100%),
              url('/hereislife/assets/images/banner_texture.png') center/cover no-repeat;
  color: #ffffff;
  padding: 76px 0 86px 0;
  text-align: center;
}

.programs-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.programs-hero-subtitle {
  font-size: 17px;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.programs-filter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 34px 0 20px 0;
}

.prog-filter-pill {
  border: none;
  background: #eaf2e8;
  color: #334155;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prog-filter-pill:hover {
  background: #d1fae5;
  color: #065f46;
}

.prog-filter-pill.active {
  background: #15803d;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(21, 128, 61, 0.3);
}

.programs-showcase-section {
  padding: 10px 0 60px 0;
}

.programs-top-row {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.prog-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prog-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.prog-feature-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.prog-feature-body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prog-cat-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
  background: #eaf2e8;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.prog-card-dark .prog-cat-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #86efac;
}

.prog-feature-title {
  font-size: 24px;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 12px;
  line-height: 1.25;
}

.prog-feature-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 22px;
  flex-grow: 1;
}

.prog-read-more {
  font-size: 14.5px;
  font-weight: 700;
  color: #15803d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.prog-read-more:hover {
  gap: 10px;
  color: #166534;
}

.prog-card-dark {
  background-color: #0f4024;
  color: #ffffff;
  border-color: #0f4024;
  justify-content: center;
  padding: 36px 30px;
}

.prog-card-dark .prog-feature-title {
  color: #ffffff;
}

.prog-card-dark .prog-feature-desc {
  color: #e2e8f0;
}

.prog-btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.prog-btn-outline-light:hover {
  background: #ffffff;
  color: #064e3b;
}

.prog-wide-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prog-wide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.prog-wide-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.prog-wide-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prog-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #334155;
  color: #1e293b;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.prog-btn-outline-dark:hover {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
}

.programs-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.programs-stats-bar {
  background-color: #f2f7ef;
  padding: 48px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 60px;
}

.prog-stats-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px;
}

.prog-stat-col {
  flex: 1;
  min-width: 180px;
}

.prog-stat-col:not(:last-child) {
  border-right: 1px solid #cbd5e1;
}

.prog-stat-number {
  font-size: 46px;
  font-weight: 900;
  color: #065f46;
  line-height: 1;
  margin-bottom: 8px;
}

.prog-stat-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #475569;
  text-transform: uppercase;
}

/* Upcoming Events Section */
.upcoming-events-section {
  padding: 10px 0 60px 0;
}

.upcoming-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.event-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.event-date-badge {
  display: inline-block;
  background-color: #065f46;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  width: fit-content;
}

.event-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 8px;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 12px;
}

.event-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-event-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #15803d;
  color: #15803d;
  background: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-event-register:hover {
  background: #15803d;
  color: #ffffff;
}

/* Call to Action Box */
.prog-cta-box {
  background-color: #f2f7ef;
  border: 1px solid #d1e7dd;
  border-top: 5px solid #15803d;
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px auto;
}

.prog-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 12px;
}

.prog-cta-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 28px auto;
}

.prog-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 968px) {
  .programs-top-row {
    grid-template-columns: 1fr;
  }
  .prog-wide-card {
    grid-template-columns: 1fr;
  }
  .programs-secondary-grid {
    grid-template-columns: 1fr;
  }
  .upcoming-events-grid {
    grid-template-columns: 1fr;
  }
  .prog-stat-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 20px;
  }
}

/* ==========================================================================
   Voice of Life FM Page (Matching UI Mockup Template)
   ========================================================================== */
.vol-hero-section {
  background: radial-gradient(circle at 50% 25%, #083c21 0%, #031c0e 85%, #021208 100%);
  color: #ffffff;
  padding: 76px 0 96px 0;
  text-align: center;
  position: relative;
}

.vol-on-air-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border: 1px solid rgba(52, 211, 153, 0.45);
  background: rgba(6, 78, 59, 0.5);
  color: #6ee7b7;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.vol-hero-title {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.vol-hero-subtitle {
  font-size: 16.5px;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Floating Audio Player Card */
.vol-floating-player-card {
  margin-top: -55px;
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #e2e8f0;
}

.vol-play-circle-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #15803d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.35);
}

.vol-play-circle-btn:hover {
  background: #166534;
  transform: scale(1.05);
}

.vol-player-info {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.vol-live-tag-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #dc2626;
  margin-bottom: 3px;
}

.vol-live-red-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dc2626;
  animation: pulse-dot 1.8s infinite;
}

.vol-player-show-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.25;
}

.vol-player-host {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

.vol-stream-progress-track {
  flex-grow: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.vol-stream-progress-fill {
  width: 65%;
  height: 100%;
  background: #15803d;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

/* Nav Tabs */
.vol-subnav-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #e2e8f0;
  margin-top: 36px;
  margin-bottom: 36px;
  padding-bottom: 0;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vol-subnav-tabs::-webkit-scrollbar {
  display: none;
}

.vol-tab-item {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: #64748b;
  padding: 12px 6px 16px 6px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.vol-tab-item:hover {
  color: #0f172a;
}

.vol-tab-item.active {
  color: #065f46;
  font-weight: 800;
}

.vol-tab-item.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #15803d;
  border-radius: 3px 3px 0 0;
}

/* Schedule Groups & Cards */
.vol-schedule-container {
  padding-bottom: 80px;
}

.vol-schedule-group {
  margin-bottom: 50px;
}

.vol-group-title {
  font-size: 26px;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.vol-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vol-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.vol-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.vol-card.active-next {
  border-right: 5px solid #15803d;
}

.vol-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.vol-time-pill {
  display: inline-block;
  background-color: #ccfbf1;
  color: #0f766e;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
}

.vol-next-status {
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 4px;
}

.vol-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 6px;
}

.vol-card-host {
  font-size: 13.5px;
  color: #15803d;
  font-weight: 600;
  margin-bottom: 12px;
}

.vol-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Presenters Tab Layout */
.vol-presenters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.vol-presenter-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.vol-presenter-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #15803d;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.vol-presenter-name {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.vol-presenter-role {
  font-size: 13px;
  color: #15803d;
  font-weight: 600;
  margin-bottom: 12px;
}

.vol-presenter-bio {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
}

/* Station Details Specs */
.vol-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.vol-spec-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.vol-spec-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 6px;
}

.vol-spec-val {
  font-size: 18px;
  font-weight: 800;
  color: #065f46;
}

.vol-quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.vol-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 968px) {
  .vol-cards-grid {
    grid-template-columns: 1fr;
  }
  .vol-floating-player-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-top: -30px;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
  }
  .vol-player-info {
    align-items: center;
  }
  .vol-stream-progress-track {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .vol-hero-section {
    padding: 48px 0 64px 0;
  }
  .vol-hero-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .vol-hero-subtitle {
    font-size: 14.5px;
    padding: 0 8px;
  }
  .vol-group-title {
    font-size: 20px;
  }
  .vol-presenters-grid {
    grid-template-columns: 1fr;
  }
  .vol-specs-grid {
    grid-template-columns: 1fr;
  }
  .vol-news-grid {
    grid-template-columns: 1fr;
  }
  .vol-quick-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .vol-floating-player-card {
    padding: 16px 12px;
  }
  .vol-player-show-title {
    font-size: 16px;
    justify-content: center;
    text-align: center;
  }
  .vol-player-host {
    font-size: 12.5px;
    text-align: center;
  }
}

/* ==========================================================================
   ESTA Admissions Application Form (Matching UI Mockup Template)
   ========================================================================== */
.esta-apply-section {
  padding: 56px 0 84px 0;
  background-color: #fafbfc;
}

.esta-apply-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 38px auto;
}

.esta-apply-title {
  font-size: 38px;
  font-weight: 800;
  color: #065f46;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.esta-apply-subtitle {
  font-size: 16px;
  color: #475569;
  line-height: 1.55;
}

.esta-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  max-width: 840px;
  margin: 0 auto;
}

.esta-form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #065f46;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  margin-top: 36px;
  margin-bottom: 22px;
}

.esta-form-section-title:first-of-type {
  margin-top: 0;
}

.esta-form-section-title svg {
  width: 22px;
  height: 22px;
  color: #065f46;
}

.esta-fields-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.esta-fields-grid-2:last-child {
  margin-bottom: 0;
}

.esta-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.esta-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.esta-input,
.esta-select,
.esta-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14.5px;
  color: #0f172a;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.esta-input:focus,
.esta-select:focus,
.esta-textarea:focus {
  outline: none;
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

.esta-input::placeholder,
.esta-textarea::placeholder {
  color: #94a3b8;
}

/* Radio Selection Cards */
.esta-program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.esta-program-grid.single-col {
  grid-template-columns: 1fr;
}

.esta-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
}

.esta-radio-card:hover {
  border-color: #15803d;
  background-color: #f0fdf4;
}

.esta-radio-card input[type="radio"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #15803d;
  flex-shrink: 0;
}

.esta-radio-content strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.esta-radio-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.esta-radio-card.selected {
  border-color: #15803d;
  background-color: #f0fdf4;
  box-shadow: 0 0 0 1px #15803d;
}

/* Form Action Buttons */
.esta-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.btn-esta-draft {
  padding: 12px 28px;
  background: #ffffff;
  border: 1px solid #334155;
  color: #1e293b;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-esta-draft:hover {
  background: #f8fafc;
  border-color: #0f172a;
}

.btn-esta-submit {
  padding: 12px 34px;
  background: #065f46;
  border: 1px solid #065f46;
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(6, 95, 70, 0.25);
}

.btn-esta-submit:hover {
  background: #044e39;
  border-color: #044e39;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .esta-fields-grid-2 {
    grid-template-columns: 1fr;
  }
  .esta-program-grid {
    grid-template-columns: 1fr;
  }
  .esta-form-card {
    padding: 28px 20px;
  }
  .esta-form-actions {
    flex-direction: column-reverse;
  }
  .btn-esta-draft, .btn-esta-submit {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Ways to Give - Donation Landing Page (Matching UI Mockup Template)
   ========================================================================== */
.donate-page-section {
  padding: 50px 0 84px 0;
  background-color: #fafbfc;
}

.donate-hero-block {
  max-width: 800px;
  margin-bottom: 46px;
}

.donate-pill-badge {
  display: inline-block;
  background-color: #ccfbf1;
  color: #0f766e;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.donate-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.donate-hero-subtitle {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.donate-trust-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.donate-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #059669;
}

.donate-trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 2-Column Donation Layout */
.donate-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left: Direct Your Impact */
.impact-section-title {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.impact-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 16px;
  position: relative;
}

.impact-card-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.impact-card-item.selected {
  border-color: #15803d;
  border-left: 5px solid #15803d;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(21, 128, 61, 0.08);
}

.impact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impact-icon-esta {
  background-color: #065f46;
  color: #ffffff;
}

.impact-icon-water {
  background-color: #99f6e4;
  color: #0d9488;
}

.impact-icon-radio {
  background-color: #15803d;
  color: #ffffff;
}

.impact-icon-bible {
  background-color: #e2e8f0;
  color: #334155;
}

.impact-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.impact-card-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* Right: Donation Checkout Card */
.donate-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.donate-freq-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e2e8f0;
}

.donate-freq-btn {
  padding: 16px;
  background: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.donate-freq-btn.active {
  color: #065f46;
  font-weight: 800;
}

.donate-freq-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #065f46;
}

.donate-form-body {
  padding: 28px 30px;
}

.donate-form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.donate-amounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.donate-amount-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donate-amount-btn:hover {
  border-color: #15803d;
  background-color: #f8fafc;
}

.donate-amount-btn.selected {
  border-color: #15803d;
  background-color: #f0fdf4;
  color: #15803d;
  box-shadow: 0 0 0 1px #15803d;
}

.donate-amount-subtext {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  margin-top: 3px;
}

.donate-custom-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  margin-bottom: 22px;
}

.donate-custom-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.donate-currency-symbol {
  position: absolute;
  left: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
}

.donate-custom-input {
  width: 100%;
  padding: 12px 14px 12px 30px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  background-color: #ffffff;
}

.donate-custom-input:focus {
  outline: none;
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

.donate-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.donate-field-group {
  margin-bottom: 16px;
}

.donate-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14.5px;
  color: #0f172a;
}

.donate-input:focus {
  outline: none;
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

.btn-complete-donation {
  width: 100%;
  padding: 15px;
  background-color: #065f46;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: 8px;
}

.btn-complete-donation:hover {
  background-color: #044e39;
  transform: translateY(-1px);
}

.donate-security-note {
  text-align: center;
  font-size: 12.5px;
  color: #64748b;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 968px) {
  .donate-layout-grid {
    grid-template-columns: 1fr;
  }
  .donate-amounts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .donate-custom-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact Us & Get Involved Page (Matching UI Mockup Template)
   ========================================================================== */
.contact-hero-banner {
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.88) 0%, rgba(3, 28, 14, 0.96) 100%),
              url('/hereislife/assets/images/contact.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 72px 0 88px 0;
  text-align: center;
  position: relative;
}

.contact-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 16px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.contact-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.contact-hero-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 18px 24px;
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.6;
}

/* Get Involved Feature Strip */
.get-involved-feature-section {
  padding: 64px 0;
  background: #ffffff;
}

.get-involved-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.get-involved-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  max-height: 380px;
}

/* 3 Ways to Stand With Us */
.stand-ways-section {
  padding: 64px 0;
  background-color: #f8fafc;
}

.stand-ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.stand-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.stand-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.stand-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.stand-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.stand-card-btn {
  font-size: 14px;
  font-weight: 700;
  color: #065f46;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.stand-card-btn:hover {
  color: #044e39;
  text-decoration: underline;
}

/* Contact Main Section */
.contact-main-section {
  padding: 70px 0 90px 0;
  background-color: #fafbfc;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 38px 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.contact-form-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.contact-form-subheading {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 26px;
}

.contact-locations-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-live-radio-card {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 26px 24px;
}

@media (max-width: 968px) {
  .get-involved-feature-grid {
    grid-template-columns: 1fr;
  }
  .stand-ways-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 26px 20px;
  }
}





