/* OotuFund Multi-Page Shared Styles */
:root {
  --orange: #ff6b35;
  --orange-dark: #e05520;
  --orange-light: #fff3ed;
  --blue-deep: #1e293b;
  --blue-mid: #334155;
  --blue-light: #64748b;
  --gray-light: #f8fafc;
  --gray-border: #e2e8f0;
  --white: #ffffff;
  --green: #10b981;
  --purple: #8b5cf6;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 1rem;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--blue-deep); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--blue-deep); color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { color: var(--blue-light); }
.section-dark p, .section-orange p { color: rgba(255,255,255,0.85); }

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-dark .section-label { color: rgba(255,255,255,0.7); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header p { font-size: 1.125rem; margin-top: 1rem; }

.accent { color: var(--orange); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--orange-light); }
.btn-white-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.625rem 1.375rem; font-size: 0.9rem; }

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--orange-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ===================== NAVIGATION ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue-deep);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--blue-mid);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: var(--orange-light); }
.nav-cta { flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--blue-deep); border-radius: 2px; transition: all 0.3s; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--gray-border);
    gap: 0.25rem;
  }
  .nav.open .nav-cta { display: block; padding: 0 1.5rem 1.5rem; }
}

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, #fff8f4 0%, #fff 60%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-light);
  border: 1px solid rgba(255,107,53,0.2);
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.2rem; color: var(--blue-mid); margin-bottom: 2.5rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-border); flex-wrap: wrap; }
.hero-stat-value { font-size: 2rem; font-weight: 800; color: var(--orange); display: block; }
.hero-stat-label { font-size: 0.875rem; color: var(--blue-light); }
.hero-image { position: relative; }
.hero-image img { border-radius: 1.5rem; box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; }
}

/* ===================== PAGE HERO ===================== */
.page-hero {
  background-color: var(--blue-deep);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
}
.page-hero .section-label { color: rgba(255,255,255,0.65); }
.page-hero h1 { text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 620px; margin: 1rem auto 0; }

/* ===================== STAT BLOCKS ===================== */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-block { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--orange); display: block; }
.stat-label { font-size: 0.9rem; color: var(--blue-light); }
@media (max-width: 700px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================== BREADCRUMB ===================== */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--blue-light); margin-bottom: 2rem; }
.breadcrumb a { color: var(--blue-light); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ===================== FOOTER ===================== */
.footer { background: var(--blue-deep); color: var(--white); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 1rem 0 1.5rem; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 0.625rem; font-weight: 700; font-size: 1.125rem; margin-bottom: 0; }
.footer-logo img { height: 30px; filter: brightness(0) invert(1); }
.footer-col h5 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================== PROGRAM CARDS ===================== */
.program-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-card-img { height: 200px; background: linear-gradient(135deg, var(--orange), var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.program-card-body { padding: 1.75rem; }
.program-card-body h3 { margin-bottom: 0.75rem; }
.program-card-body p { font-size: 0.9375rem; margin-bottom: 1.25rem; }

/* ===================== TESTIMONIAL ===================== */
.quote-block {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  padding: 1.75rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.quote-block blockquote { font-size: 1.125rem; font-style: italic; color: var(--blue-deep); margin-bottom: 0.75rem; }
.quote-block cite { font-size: 0.875rem; font-weight: 600; color: var(--orange); }

/* ===================== DONATION FORM ===================== */
.donate-form {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
}
.donate-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.donate-amount-btn {
  padding: 0.875rem;
  border: 2px solid var(--gray-border);
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: var(--white);
  color: var(--blue-deep);
  transition: all 0.2s;
  text-align: center;
}
.donate-amount-btn:hover, .donate-amount-btn.active { border-color: var(--orange); background: var(--orange-light); color: var(--orange); }
.donate-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-border);
  border-radius: 0.75rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.donate-input:focus { border-color: var(--orange); }
.donate-freq { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.donate-freq label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 2px solid var(--gray-border);
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
}
.donate-freq input { display: none; }
.donate-freq label.checked { border-color: var(--orange); background: var(--orange-light); color: var(--orange); }
.donate-submit { width: 100%; padding: 1rem; background: var(--orange); color: var(--white); border: none; border-radius: 0.75rem; font-size: 1.0625rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.donate-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--blue-light); justify-content: center; margin-top: 1rem; }

/* ===================== TOC FLOW ===================== */
.toc-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.toc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  flex: 1;
}
.toc-step-icon {
  width: 64px; height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.toc-step-line {
  flex: 1;
  height: 2px;
  background: var(--orange);
  margin-top: 32px;
  min-width: 30px;
}
.toc-step-label { font-size: 0.8125rem; font-weight: 600; margin-top: 0.75rem; color: var(--blue-deep); }

/* ===================== IMPACT METRIC ===================== */
.impact-metric {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.impact-metric-num { font-size: 3rem; font-weight: 800; display: block; }
.impact-metric-label { font-size: 0.9rem; opacity: 0.8; margin-top: 0.25rem; }

/* ===================== STORY CARD ===================== */
.story-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.story-card-img { height: 220px; background: linear-gradient(135deg, #667eea, #764ba2); position: relative; }
.story-card-img img { width: 100%; height: 100%; object-fit: cover; }
.story-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.story-card-body { padding: 1.5rem; }
.story-card-body h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.story-card-body p { font-size: 0.9rem; }
.story-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; }
.story-card-author { font-size: 0.8rem; font-weight: 600; color: var(--blue-light); }

/* ===================== TIMELINE ===================== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0.5rem; top: 0; bottom: 0; width: 2px; background: var(--orange-light); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot { position: absolute; left: -1.625rem; top: 0.25rem; width: 16px; height: 16px; background: var(--orange); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--orange); }
.timeline-date { font-size: 0.8125rem; font-weight: 700; color: var(--orange); margin-bottom: 0.25rem; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 0.25rem; }
.timeline-desc { font-size: 0.9rem; color: var(--blue-light); }

/* ===================== VALUE PILLARS ===================== */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  background: var(--white);
  text-align: center;
}
.pillar-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pillar h4 { margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9rem; }
@media (max-width: 700px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ===================== TAG ===================== */
.tag { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 9999px; }
.tag-blue { background: #eff6ff; color: #2563eb; }
.tag-green { background: #f0fdf4; color: #16a34a; }

/* ===================== ALERT / NOTICE ===================== */
.notice { background: var(--orange-light); border: 1px solid rgba(255,107,53,0.2); border-radius: 0.75rem; padding: 1.25rem 1.5rem; display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9375rem; }
.notice-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ===================== TEAM CARD ===================== */
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--orange-light); }
.team-name { font-weight: 700; color: var(--blue-deep); }
.team-role { font-size: 0.875rem; color: var(--orange); font-weight: 600; margin: 0.25rem 0 0.5rem; }
.team-bio { font-size: 0.875rem; }

/* ===================== TWO-COL FEATURE ===================== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-image { order: 1; }
.feature-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.feature-text h2 { margin-bottom: 1.25rem; }
.feature-text p { margin-bottom: 1.25rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; }
.feature-list li::before { content: '✓'; background: var(--orange); color: var(--white); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 800px) { .feature-row { grid-template-columns: 1fr; gap: 2rem; } .feature-row.reverse .feature-text, .feature-row.reverse .feature-image { order: unset; } }

/* ===================== UTILITY ===================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* ===================== SCROLL PROGRESS BAR ===================== */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 107, 53, 0.12);
  z-index: 9999;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #e85d2f);
  width: 0%;
  transition: width 0.15s ease;
}

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

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; max-width: 100%; }
*, *::before, *::after { min-width: 0; }

/* Base small-screen improvements */
@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2rem; }

  /* Container tighter padding on phone */
  .container { padding: 0 1rem; }

  /* Page hero */
  .page-hero { padding: 3.5rem 0 2.5rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Headings */
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.125rem; }

  /* Buttons full-width stacked */
  .btn { padding: 0.7rem 1.25rem; font-size: 0.9rem; }

  /* Section titles */
  .section-label { font-size: 0.7rem; }

  /* Team cards */
  .team-grid { grid-template-columns: 1fr 1fr !important; }

  /* Partner logos */
  .partner-logos { gap: 1rem; }

  /* TOC flow — single column */
  .toc-flow { grid-template-columns: 1fr !important; }
  .toc-arrow { display: none; }

  /* Impact / stat cards */
  .impact-grid { grid-template-columns: 1fr 1fr !important; }

  /* Story cards */
  .stories-grid { grid-template-columns: 1fr !important; }

  /* Resources */
  .resources-grid { grid-template-columns: 1fr !important; }

  /* Contact form */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-form { padding: 1.5rem !important; }

  /* Footer */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-bottom { font-size: 0.8rem; }

  /* Nav hamburger menu full height */
  .nav.open .nav-links { top: 64px; }

  /* Tables scroll on mobile */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Inline images in text */
  img { max-width: 100%; }
}

/* Tablet — 601px to 900px */
@media (min-width: 601px) and (max-width: 900px) {
  .container { padding: 0 1.25rem; }
  .page-hero { padding: 4rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .team-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .impact-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Fix images overflowing on narrow screens */
@media (max-width: 480px) {
  .hero-image img,
  .feature-image img,
  .story-card img,
  .program-card img { border-radius: 0.75rem; }

  /* Stack any flex rows */
  .kundi-cta-group,
  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }

  .kundi-cta-group a,
  .hero-actions a,
  .cta-actions a { text-align: center; justify-content: center; }
}
