/* =============================================
   FRONTLINE RELIEF FOUNDATION — v2
   Clean, institutional style matching PDF docs
   ============================================= */

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

:root {
  --navy: #1B3A5C;
  --cyan: #29ABE2;
  --steel: #29ABE2;
  --steel-light: #29ABE2;
  --gray-logo: #8C8C8C;
  --body-text: #333333;
  --body-light: #555555;
  --gray-100: #F7F8FA;
  --gray-200: #E8ECF0;
  --gray-300: #CCD3DA;
  --white: #ffffff;
  --stat-bg: #1B3A5C;
  --table-label: #1B3A5C;
  --border: #D0D8E0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--body-text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; }

p {
  color: var(--body-light);
  line-height: 1.7;
}

/* Section header pattern — matches PDF style */
.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200);
}

.section-header p {
  margin-top: 12px;
  font-size: 0.95rem;
  max-width: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

.btn-primary:hover {
  background: #1E9AD0;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

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

.btn-donate {
  background: var(--cyan);
  color: var(--white);
  padding: 12px 32px;
  font-size: 0.95rem;
}

.btn-donate:hover {
  background: #1E9AD0;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo img {
  height: 64px;
  width: auto;
}

.logo-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo-text .foundation {
  color: var(--gray-logo);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 2px;
}

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

.nav-links a {
  color: var(--body-text);
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a.active {
  color: var(--cyan);
  font-weight: 600;
}

.nav-donate {
  background: var(--cyan) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  font-weight: 600 !important;
}

.nav-donate:hover {
  background: #1E9AD0 !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =============================================
   HERO (index page)
   ============================================= */
.hero {
  padding: 112px 0 0;
  background: linear-gradient(rgba(27, 58, 92, 0.65), rgba(27, 58, 92, 0.75)), url('../images/photos/hero_altadena.jpg') center/cover no-repeat;
  width: 100%;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  max-width: 720px;
  padding: 32px 0 20px;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  width: 220px;
  height: auto;
  opacity: 0.9;
}

.hero-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 640px;
  font-style: italic;
}

.hero-attribution {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats bar — matches PDF stat bar style */
.stats-bar {
  background: var(--stat-bg);
  padding: 28px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stats-bar-item {
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 0 12px;
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats-bar-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* =============================================
   GENERIC SECTIONS
   ============================================= */
.page-section {
  padding: 56px 0;
}

.page-section.alt {
  background: var(--gray-100);
}

.section-intro {
  margin-bottom: 32px;
  max-width: 700px;
}

.section-intro p {
  font-size: 0.95rem;
  margin-top: 8px;
}

/* =============================================
   TABLES — PDF doc style
   ============================================= */
.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.doc-table th {
  background: var(--gray-200);
  color: var(--navy);
  text-align: left;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doc-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}

.doc-table tr:last-child td {
  border-bottom: none;
}

.doc-table .label-cell {
  background: var(--table-label);
  color: var(--white);
  font-weight: 600;
  width: 200px;
  font-size: 0.88rem;
}

.doc-table .content-cell {
  background: var(--gray-100);
  color: var(--body-text);
}

/* =============================================
   MISSION / ABOUT BLOCK
   ============================================= */
.mission-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.mission-block p {
  font-size: 1.05rem;
  max-width: none;
  line-height: 1.8;
}

.mission-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.mission-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.mission-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mission-photo img:hover {
  transform: scale(1.03);
}

/* =============================================
   DONATE CTA SECTION
   ============================================= */
.donate-cta {
  padding: 48px 0;
  background: var(--gray-100);
  text-align: center;
}

.donate-cta h2 {
  margin-bottom: 12px;
}

.donate-cta p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* =============================================
   MEDIA STORIES
   ============================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.media-card {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.media-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Logo area */
.media-card-logo {
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.media-card-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

/* Text-based logos for outlets without image files */
.text-logo {
  font-weight: 700;
  line-height: 1;
}

.text-logo.latimes {
  font-family: 'Times New Roman', 'Georgia', serif;
  font-size: 1.3rem;
  color: #000000;
  letter-spacing: -0.3px;
}

.text-logo.palabra {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  font-style: italic;
}

.text-logo.weatherchannel {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Make CBS and VoyageLA logos more prominent */
.media-card-logo img.logo-prominent {
  max-height: 56px;
}

/* Ops section dual photos */
.ops-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.ops-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.ops-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Community Integration side-by-side */
.community-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.community-photo {
  border-radius: 6px;
  overflow: hidden;
}

.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Photo banner for sections */
.section-photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 80%;
  border-radius: 6px;
  margin-bottom: 32px;
}

/* Contact form full width */
.gi-form-full {
  max-width: none !important;
}

.media-card h4 {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--navy);
  flex: 1;
}

.media-card .author {
  font-size: 0.82rem;
  color: var(--body-light);
  margin-bottom: 12px;
}

.media-card .read-link {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: auto;
}

.media-card .read-link:hover {
  text-decoration: underline;
}

/* =============================================
   VOLUNTEER FORM
   ============================================= */
.volunteer-section {
  padding: 48px 0;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.volunteer-form {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 3px;
  font-size: 0.88rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-group textarea {
  resize: vertical;
  min-height: 56px;
}

.volunteer-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 10px;
  line-height: 1.6;
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-weight: 600;
}

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

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

.footer-links a {
  font-size: 0.88rem;
}

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

.footer-contact a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  padding: 112px 0 32px;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1rem;
  max-width: 700px;
}

/* Supplies grid — clean cards, no emoji */
.supplies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.supply-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 20px;
}

.supply-card h4 {
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.supply-card p {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.leader-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader-photo {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--gray-200);
  margin: 0 auto 22px;
  border: 4px solid var(--navy);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 58, 92, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(27, 58, 92, 0.18);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.leader-card .title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 14px;
}

.leader-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
  margin: auto auto 0;
}

/* Testimonials */
.testimonial-card {
  background: var(--gray-100);
  border-left: 3px solid var(--steel);
  border-radius: 0 4px 4px 0;
  padding: 28px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-card .attribution {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
}

/* Vision */
.vision-section {
  padding: 56px 0;
  background: var(--gray-100);
  border-top: 3px solid var(--navy);
}

.vision-section h2 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.vision-section p {
  color: var(--body-light);
  font-size: 1rem;
  max-width: none;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =============================================
   DATA PAGE
   ============================================= */
.data-hero {
  padding: 112px 0 32px;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
}

.data-hero h1 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.data-hero .subtitle {
  font-size: 0.95rem;
  color: var(--body-light);
}

.data-hero .date-label {
  font-size: 0.78rem;
  color: var(--steel);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.data-note {
  background: var(--gray-100);
  border-left: 3px solid var(--steel);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: var(--body-light);
}

.data-note strong {
  color: var(--body-text);
}

/* Data stat cards */
.data-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.data-stat-card {
  background: var(--stat-bg);
  color: var(--white);
  text-align: center;
  padding: 20px 12px;
  border-radius: 4px;
}

.data-stat-card .number {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.data-stat-card .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* Bar charts */
.bar-chart {
  margin: 20px 0;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bar-label {
  min-width: 150px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body-text);
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 28px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--steel);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  min-width: 45px;
}

.bar-fill.alert {
  background: var(--navy);
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.demographics-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.demographics-stack .bar-row {
  margin-bottom: 16px;
}

.demographics-stack .bar-track {
  height: 36px;
}

/* Insight cards */
.insight-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 24px;
}

.insight-card h4 {
  color: var(--navy);
  margin-bottom: 8px;
}

.insight-card .big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--steel);
  display: block;
  margin-bottom: 4px;
}

.insight-card .big.alert {
  color: var(--navy);
}

/* Vulnerability bar */
.vuln-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.vuln-stat-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--navy);
  padding: 20px;
  text-align: center;
  border-radius: 0 4px 4px 0;
}

.vuln-stat-card .number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.vuln-stat-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--body-light);
}

/* Trend cards */
.trend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trend-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 24px;
}

.trend-card h4 {
  color: var(--navy);
  margin-bottom: 6px;
}

.trend-card .trend-stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--steel);
  line-height: 1;
  margin-bottom: 4px;
}

.trend-card .trend-stat.alert {
  color: var(--navy);
}

.trend-card .trend-context {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--body-light);
  margin-bottom: 10px;
}

/* Geo cards */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.geo-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--steel);
  border-radius: 0 0 4px 4px;
  padding: 24px;
}

.geo-card .zip {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.geo-card .area {
  font-size: 0.82rem;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 8px;
}

.geo-card .pct {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 6px;
}

.geo-card p {
  font-size: 0.82rem;
}

/* =============================================
   DONATE PAGE
   ============================================= */
.donate-hero {
  padding: 112px 0 32px;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
}

.donate-hero h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.impact-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--cyan);
  border-radius: 0 0 4px 4px;
  padding: 24px;
  text-align: center;
}

.impact-card .amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 8px;
}

.impact-card p {
  font-size: 0.88rem;
}

.donate-main-cta {
  text-align: center;
  padding: 40px;
  background: var(--stat-bg);
  border-radius: 4px;
  color: var(--white);
}

.donate-main-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.donate-main-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.donate-main-cta .btn {
  background: var(--white);
  color: var(--stat-bg);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 40px;
}

.donate-main-cta .btn:hover {
  background: var(--gray-100);
}

/* =============================================
   PARTNER LOGO GRID
   ============================================= */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
  align-items: center;
  justify-items: center;
}

.partner-card {
  background: transparent;
  border: none;
  padding: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card img {
  max-height: 90px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card.partner-cta {
  border-style: dashed;
  border-color: var(--steel);
}

.partner-card.partner-cta a {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.92rem;
}

/* =============================================
   STANDALONE TESTIMONIAL
   ============================================= */
.testimonial-highlight {
  background: var(--white);
  border-left: 4px solid var(--navy);
  padding: 28px 36px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0 6px 6px 0;
}

.testimonial-highlight blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-highlight .attribution {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
}

/* =============================================
   GET INVOLVED PAGE
   ============================================= */
.gi-form {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 28px;
}

.gi-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gi-form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-group select {
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 3px;
  font-size: 0.88rem;
  font-family: inherit;
  background: var(--white);
  color: var(--body-text);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-group select:focus {
  outline: none;
  border-color: var(--cyan);
}

.gi-volunteer-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
}

.gi-schedule-info h3 {
  margin-bottom: 16px;
}

/* Donorbox embed wrapper */
.donorbox-wrapper {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.donorbox-wrapper h2 {
  margin-bottom: 8px;
}

.donorbox-wrapper p {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .supplies-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .data-stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .hero h1 { font-size: 2rem; }
  .hero { padding-top: 100px; }
  .page-hero, .data-hero, .donate-hero { padding-top: 96px; }

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

  .stats-bar-item:nth-child(3) { border-right: none; }

  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 2px solid var(--navy);
    gap: 16px;
  }

  .two-col { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .supplies-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .trend-grid { grid-template-columns: 1fr; }
  .volunteer-grid { grid-template-columns: 1fr; }
  .mission-photos { grid-template-columns: 1fr; }
  .community-layout { grid-template-columns: 1fr; }
  .gi-volunteer-layout { grid-template-columns: 1fr; }
  .gi-form-grid { grid-template-columns: 1fr; }
  .gi-form-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .vuln-stats-row { grid-template-columns: repeat(2, 1fr); }
  .data-stats-row { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }

  .bar-label { min-width: 100px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; }
  .stats-bar-item { border-right: none; padding: 8px 0; }
  .data-stats-row { grid-template-columns: 1fr; }
  .vuln-stats-row { grid-template-columns: 1fr; }
}
