/* ============================================
   FURNISHING HOPE - Main Stylesheet
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --primary: #fda32b;
  --primary-hover: #F28A02;
  --secondary: #337dc7;
  --secondary-hover: #2d4a70;
  --background: #fdfcfa;
  --foreground: #1a2a3a;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --blue-400: #60a5fa;
  
  /* Spacing */
  --container-max: 1280px;
  --container-padding: 1.5rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  padding-left:1rem;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-sm { max-width: 640px; }
.container-md { max-width: 768px; }
.container-lg { max-width: 1024px; }
.container-xl { max-width: 1280px; }
.container-4xl { max-width: 896px; }
.container-5xl { max-width: 1024px; }
.container-6xl { max-width: 1152px; }
.container-7xl { max-width: 1280px; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Text */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Colors */
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-900 { color: var(--gray-900); }
.text-blue-400 { color: var(--blue-400); }

.bg-white { background-color: var(--white); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-200 { background-color: var(--gray-200); }
.bg-gray-50 { background-color: #f9fafb; }

/* Spacing */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-28 { padding-bottom: 7rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 0.4rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Width/Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-60 { z-index: 60; }

/* Border Radius */
.rounded { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: 9999px; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Transitions */
.transition-all { transition: all var(--transition-normal); }
.transition-colors { transition: color var(--transition-normal), background-color var(--transition-normal); }
.transition-transform { transition: transform var(--transition-normal); }

/* Pointer */
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-contain: contain; }
.object-top { object-position: top; }
.object-center { object-position: center; }
.object-right { object-position: right; }

/* Hide scrollbar */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: var(--radius-2xl);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212, 162, 76, 0.3);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(212, 162, 76, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(61, 90, 128, 0.3);
}
.btn-secondary:hover {
  background-color: var(--secondary-hover);
  box-shadow: 0 6px 20px rgba(61, 90, 128, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(61, 90, 128, 0.7);
  color: var(--secondary);
}
.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:.5rem 1rem;
  transition: padding 0.4s ease;
}

.nav-logo img {
  height: 45px;
  width: auto;
  transition: all 0.4s ease;
}

.nav-logo img.scrolled {
  height: 45px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--primary);
  padding: 1rem 1.5rem 1rem 3.5rem;
  border-radius: 9999px 0 0 9999px;
  margin-right: -1rem;
  position: relative;
  transition: padding 0.4s ease;
}

.nav-desktop::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  width: 100vw;
  background-color: var(--primary);
}

.nav-desktop.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-desktop a {
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.nav-desktop a:hover {
  color: var(--secondary);
}

.nav-desktop .btn-secondary {
  position: relative;
  z-index: 10;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-xl);
  transition: .3s;
}

.nav-desktop .btn-secondary:hover{
  background-color: white;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  z-index: 50;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  transition: visibility 0.5s ease;
}

.mobile-menu-overlay.open {
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mobile-menu-overlay.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.mobile-menu-overlay.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  z-index: 10;
}

.mobile-menu-content {
  height: 100vh;
  padding: 5rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: var(--white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-content a {
  color: var(--gray-800);
  font-weight: 500;
  padding: 1rem 0;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-overlay.open .mobile-menu-content a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-content a:nth-child(1) { transition-delay: 0.3s; }
.mobile-menu-content a:nth-child(2) { transition-delay: 0.4s; }
.mobile-menu-content a:nth-child(3) { transition-delay: 0.5s; }
.mobile-menu-content a:nth-child(4) { transition-delay: 0.6s; }
.mobile-menu-content a:nth-child(5) { transition-delay: 0.7s; }

.mobile-menu-content a:hover {
  color: var(--primary);
}

.mobile-menu-content .btn {
  width: 100%;
  margin-top: 1rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease 0.8s, transform 0.3s ease 0.8s;
}

.mobile-menu-overlay.open .mobile-menu-content .btn {
  opacity: 1;
  transform: translateX(0);
  color: white;
}

.mobile-menu-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease 0.9s, transform 0.3s ease 0.9s;
}

.mobile-menu-overlay.open .mobile-menu-contact {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-contact h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-700);
  padding: 0.5rem 0;
  border-bottom: none;
  font-size: 1rem;
}

.mobile-menu-contact a svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero-gradient {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.9) 40%, transparent);
}

.hero-content-desktop {
  display: none;
  position: relative;
  z-index: 20;
  align-items: center;
  min-height: 800px;
  border-top: 8px solid var(--secondary);
}

.hero-content-desktop .hero-text {
  max-width: 32rem;
}

.hero-content-desktop h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content-desktop p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Mobile Hero */
.hero-mobile {
  display: block;
}

.hero-mobile-text {
  position: relative;
  padding: 8rem 1.5rem 2.5rem;
}

.hero-mobile-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/sun-rays-overlay.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.hero-mobile-text::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

.hero-mobile-text .hero-text {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.hero-mobile-text h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-mobile-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-mobile-image {
  position: relative;
}

.hero-mobile-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, white, transparent);
  z-index: 10;
}

.hero-mobile-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title svg {
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 100%;
  height: 1.5rem;
}

/* Our Mission Section */
.mission-section {
  position: relative;
  padding: 5rem 0 6rem;
  background-color: var(--gray-200);
  border-top: 8px solid var(--secondary);
}

.mission-section .sunburst-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mission-section .sunburst-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/sun-overlay4.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: invert(1) brightness(0.7);
  mix-blend-mode: multiply;
  pointer-events: none;
}

#homepage-mission-text{
  font-size: 1.33em;
}

/* Impact Statistics Section */
.stats-section {
  position: relative;
  padding: 5rem 0;
  background-color: var(--primary);
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border-bottom: 8px solid var(--secondary);
}

/* Counter Cards Grid */
.stats-counters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stats-counter-card {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stats-counter-card .counter-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stats-counter-card .counter-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.3;
}

/* Our Work Section */
.work-section {
  position: relative;
  padding: 4rem 0 7rem;
  background-color: var(--white);
  overflow: hidden;
}

.work-section .sunburst-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/sunburst-vertical.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.work-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.work-row:last-child {
  margin-bottom: 0;
}

.work-image {
  width: 100%;
}

.work-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lg);
}

.work-content {
  width: 100%;
}

.work-content .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.work-content .icon-box.primary-bg {
  background-color: rgba(212, 162, 76, 0.1);
}

.work-content .icon-box.secondary-bg {
  background-color: rgba(61, 90, 128, 0.1);
}

.work-content .icon-box img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.work-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
}

.work-content p {
  color: var(--gray-500);
  line-height: 1.6;
  font-size: 1.125rem;
}

.work-content .link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 1.5rem;
  transition: gap var(--transition-normal);
}

.work-content .link:hover {
  gap: 0.75rem;
}

/* Partner Banner */
.partner-banner {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.partner-banner .bg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.partner-banner .bg-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-banner-content {
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.partner-banner-text {
  text-align: center;
}

.partner-banner h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.partner-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 42rem;
}

/* Contact Form Section */
  
  #captchaError{
    color: #dc2626; font-size: 0.9rem; 
    margin-top: 0.5rem;
    display: none; 
    padding:1rem; 
    background:rgba(255,255,255,.5); 
    font-weight: bold; 
    width: fit-content;
    border:2px solid #dc2626;
    border-radius: var(--radius-md);
    margin-top: 1rem;
  }

.contact-section {
  padding: 5rem 0 6rem;
  background-color: var(--gray-200);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-top: 8px solid var(--primary);
}

.contact-form-card {
  background-color: var(--white);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-form {
  padding: 2rem 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background-color: var(--white);
  color: var(--gray-900);
  font-size: 1rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.2);
}

textarea.form-input {
  resize: none;
  min-height: 120px;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-info-card {
  background-color: var(--gray-100);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  text-align: center;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.contact-info-card a:hover {
  color: var(--secondary);
}

/* Instagram / Hope in Action Section */
.instagram-section {
  position: relative;
  padding: 5rem 0;
  background-color: var(--secondary);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border-bottom: 8px solid var(--primary);
  overflow: hidden;
}

.instagram-section h2 {
  color: var(--white);
}

.instagram-section p {
  color: rgba(255, 255, 255, 0.7);
}

.instagram-section .instagram-handle {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.instagram-section .instagram-handle:hover {
  color: rgba(212, 162, 76, 0.8);
}

/* Instagram Carousel */
.instagram-carousel {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.instagram-carousel-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll 45s linear infinite;
}

.instagram-carousel-track:hover {
  animation-play-state: paused;
}

.instagram-post {
  flex-shrink: 0;
  width: 16rem;
  margin-right: 1rem;
}

.instagram-post-inner {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-color: var(--gray-100);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-normal);
}

.instagram-post:hover .instagram-post-inner {
  box-shadow: var(--shadow-xl);
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-post:hover img {
  transform: scale(1.05);
}

.instagram-post-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(61, 90, 128, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}

.instagram-post-overlay svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
}

/* News Section */
.news-section {
  padding: 6rem 0;
  background-color: var(--white);
}

/* Final CTA Section */
.cta-section {
  position: relative;
  padding: 6rem 0 8rem;
  background-color: var(--primary);
  overflow: hidden;
  margin: 2rem 0;
  border-radius: var(--radius-xl);
}

.cta-section .decorative-blur {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}

.cta-section .decorative-blur.top-left {
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}

.cta-section .decorative-blur.bottom-right {
  bottom: 0;
  right: 0;
  width: 31rem;
  height: 31rem;
  background-color: rgba(61, 90, 128, 0.15);
  transform: translate(33%, 33%);
  filter: blur(120px);
}

.cta-section .decorative-dot {
  position: absolute;
  border-radius: 9999px;
  filter: blur(2px);
  pointer-events: none;
  display: none;
}

.cta-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.cta-text {
  text-align: center;
  flex: 1;
}

.cta-text .label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.cta-text h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.cta-text h2 svg {
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 100%;
  height: 1.5rem;
}

.cta-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}

.cta-card {
  width: 100%;
  max-width: 24rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
}

.cta-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cta-card-header .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  margin-bottom: 1rem;
}

.cta-card-header .icon-box img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.cta-card-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.cta-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-bg .sunburst-overlay {
  position: absolute;
  inset: 0;
  background-image: url('images/sun-overlay4.webp');
  background-size: cover;
  background-position: top center;
  opacity: 0.2;
}

.footer-content {
  position: relative;
  padding: 4rem 1.5rem;
}

.footer-content p a, .footer-content ul a{
  border-bottom: 1px solid transparent;
  transition: var(--transition-normal);
}

.footer-content p a:hover, .footer-content ul a:hover{
  border-bottom: 1px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-col h3 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-col ul{
  padding-left:.5rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  list-style-type: none;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-logo {
  height: 2.25rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom .border-link {
  border-bottom: 1px solid var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
}

.footer-social a:hover {
  color: var(--white);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

  .hero-mobile {
    display: none;
  }

  .hero-bg, .hero-gradient {
    display: block;
  }
  
  .hero-content-desktop {
    display: flex;
  }
  
  .mission-section {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: -1.5rem;
    z-index: 21;
  }

  #homepage-mission-text{
    font-size: 1.5em !important;
  }
  
  .stats-counters-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .stats-counter-card {
    padding: 2rem 1.5rem;
  }
  
  .stats-counter-card .counter-number {
    font-size: 2.75rem;
  }
  
  .stats-counter-card .counter-label {
    font-size: 0.875rem;
  }
  
  .partner-banner-content {
    padding: 3.5rem;
  }
  
  .partner-banner h3 {
    font-size: 1.875rem;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .instagram-post {
    width: 18rem;
  }
  
  .news-featured h3 {
    font-size: 1.875rem;
  }
  
  .cta-text h2 {
    font-size: 3rem;
  }
  
  .cta-text p {
    font-size: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {

  .nav-container{
    padding: .25rem 1rem;
  }

  .nav-logo img {
    height: 63px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  .nav-logo img.scrolled {
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .hero-content-desktop h1 {
    font-size: 3.75rem;
  }
  
  .hero-content-desktop p {
    font-size: 1.25rem;
  }
  
  .work-row {
    flex-direction: row;
    gap: 5rem;
  }
  
  .work-row.reverse {
    flex-direction: row-reverse;
  }
  
  .work-image,
  .work-content {
    width: 50%;
  }
  
  .work-content h3 {
    font-size: 1.875rem;
  }
  
  .partner-banner-content {
    flex-direction: row;
    padding: 5rem;
  }
  
  .partner-banner-text {
    text-align: left;
    flex: 1;
  }
  
  .partner-banner h3 {
    font-size: 1.875rem;
  }
  
  .instagram-post {
    width: 20rem;
  }
  
  .news-grid {
    grid-template-columns: 7fr 5fr;
  }
  
  .cta-content {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  
  .cta-text {
    text-align: left;
  }
  
  .cta-text p {
    margin: 0;
  }
  
  .cta-text h2 {
    font-size: 3.75rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content-desktop h1 {
    font-size: 3.75rem;
  }
}

/* ============================================
   DESKTOP DROPDOWN MENUS
   ============================================ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-normal);
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

.nav-dropdown-trigger:hover {
  color: var(--secondary-hover);
}

.nav-dropdown-trigger svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

/* Small triangle pointer */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--gray-700) !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background-color: var(--gray-100);
  color: var(--primary) !important;
}

/* ============================================
   MOBILE ACCORDION MENUS
   ============================================ */

.mobile-accordion {
  border-bottom: 1px solid var(--gray-100);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-overlay.open .mobile-accordion {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger with existing menu items */
.mobile-menu-content > *:nth-child(1) { transition-delay: 0.3s; }
.mobile-menu-content > *:nth-child(2) { transition-delay: 0.35s; }
.mobile-menu-content > *:nth-child(3) { transition-delay: 0.4s; }
.mobile-menu-content > *:nth-child(4) { transition-delay: 0.45s; }
.mobile-menu-content > *:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu-content > *:nth-child(6) { transition-delay: 0.55s; }
.mobile-menu-content > *:nth-child(7) { transition-delay: 0.6s; }
.mobile-menu-content > *:nth-child(8) { transition-delay: 0.65s; }

.mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-800);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.mobile-accordion-trigger:hover {
  color: var(--primary);
}

.accordion-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.mobile-accordion.open .accordion-chevron {
  transform: rotate(180deg);
}

.mobile-accordion-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-accordion.open .mobile-accordion-menu {
  max-height: 300px;
  padding-bottom: 0.5rem;
}

.mobile-accordion-menu a {
  display: block !important;
  padding: 0.6rem 1rem !important;
  font-size: 1rem !important;
  color: var(--gray-600) !important;
  border-bottom: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: color 0.2s ease !important;
}

.mobile-accordion-menu a:hover {
  color: var(--primary) !important;
}

/* ============================================
   NEWS & STORIES SECTION (HOMEPAGE)
   ============================================ */

.news-section { padding: 4rem 0; background-color: #ffffff; }
.news-homepage-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }

/* Featured Post Card */
.news-featured-card {
  display: flex;
  flex-direction: column;
  background-color: #1f2937;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.news-featured-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.news-featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,41,55,0.7) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}
.news-featured-image { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; }
.news-featured-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.3s ease; }
.news-featured-card:hover .news-featured-image img { transform: scale(1.06); }
.news-featured-content { position: relative; z-index: 3; padding: 2.5rem; display: flex; flex-direction: column; }
.news-featured-badge {
  display: inline-block;
  width: fit-content;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.news-featured-date { display: none; }
.news-featured-content h3 { font-size: 2rem; font-weight: 700; color: #ffffff; margin-bottom: 1.25rem; line-height: 1.2; }
.news-featured-content p { font-size: 1.0625rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 1.5rem; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.55rem 1.1rem;
  border-radius: 20px;
  width: fit-content;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.news-featured-card:hover .read-more {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* Secondary Posts Grid */
.news-secondary-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.news-secondary-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: transparent;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-secondary-card:hover { transform: translateY(-4px); }
.news-secondary-image { width: 100%; height: 180px; overflow: hidden; border-radius: 16px; background-color: #e5e7eb; flex-shrink: 0; }
.news-secondary-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: all 0.3s ease; }
.news-secondary-card:hover .news-secondary-image img { transform: scale(1.08); }
.news-secondary-content { display: flex; flex-direction: column; justify-content: flex-start; }
.news-secondary-date { display: none; }
.news-secondary-card h4 { font-size: 1.0625rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.5rem; line-height: 1.3; }
.news-secondary-card p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; margin: 0 0 0.75rem; }
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  transition: all 0.25s ease;
  width: fit-content;
}
.news-secondary-card:hover .news-read-more {
  color: var(--primary);
  gap: 0.55rem;
}

/* View All Link */
.news-view-all { display: flex; justify-content: center; padding-top: 2rem; grid-column: 1 / -1; }

@media (min-width: 768px) {
  .news-section { padding: 5rem 0; }
  .news-homepage-grid { grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
  .news-featured-card { min-height: 450px; }
  .news-secondary-image { height: 140px; }
  .news-view-all { grid-column: 1 / 3; }
}

@media (min-width: 1024px) {
  .news-section { padding: 6rem 0; }
  .news-homepage-grid { gap: 3rem; }
  .news-featured-card { min-height: 500px; }
  .news-featured-content { padding: 3rem; }
  .news-featured-content h3 { font-size: 2.25rem; }
  .news-secondary-grid { gap: 2rem; }
  .news-view-all { padding-top: 2.5rem; }
}
