/* OCIC Volunteer Portal — shared styles */

:root {
  --ocic-yellow: #F5B800;
  --ocic-yellow-soft: #FEF3C7;
  --ocic-black: #1f2937;
  --bg: #f9fafb;
  --surface: #ffffff;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --text: #111827;
  --text-muted: #6b7280;
  --red: #dc2626;
  --red-soft: #fee2e2;
  --amber: #d97706;
  --amber-soft: #fef3c7;
  --green: #059669;
  --green-soft: #d1fae5;
  --blue: #2563eb;
  --blue-soft: #dbeafe;
  --purple: #7c3aed;
  --purple-soft: #ede9fe;
  --gray-soft: #f3f4f6;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0 0 0.5rem; line-height: 1.2; }
h1 { font-size: 1.75rem; font-weight: 700; }
h2 { font-size: 1.25rem; font-weight: 600; }
h3 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 0.75rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.site-header {
  background: var(--ocic-black);
  color: white;
  border-bottom: 4px solid var(--ocic-yellow);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.site-header h1 { color: white; font-size: 1.25rem; margin: 0; }
.site-header h1 .accent { color: var(--ocic-yellow); }
.site-header .meta { font-size: 0.875rem; color: #d1d5db; }
.site-header .meta strong { color: white; }

/* Countdown strip */
.countdown-strip {
  background: var(--ocic-yellow-soft);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.countdown-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0;
  padding-bottom: 0;
}
.countdown-label { font-size: 0.875rem; color: var(--text-muted); }
.version-stamp {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.version-stamp code {
  background: rgba(0,0,0,0.05);
  padding: 0.0625rem 0.3125rem;
  border-radius: 3px;
  font-size: 0.6875rem;
}
.countdown-big { font-size: 1.5rem; font-weight: 700; color: var(--ocic-black); }
.countdown-big .unit { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.btn-donate {
  background: var(--ocic-black);
  color: var(--ocic-yellow);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
}
.btn-donate:hover { background: #374151; text-decoration: none; }

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-refresh {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d1d5db;
  padding: 0.4375rem 0.75rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.8125rem;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.btn-refresh:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* Tab nav */
.tabs {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.tabs .container { padding: 0 1.25rem; display: flex; overflow-x: auto; gap: 0; }
.tab {
  background: none;
  border: none;
  padding: 1rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}
.tab:hover { color: var(--text); }
.tab.active {
  color: var(--ocic-black);
  border-bottom-color: var(--ocic-yellow);
  font-weight: 600;
}

/* Sections */
.section { display: none; padding-top: 1.5rem; }
.section.active { display: block; }
.section-header { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 0.25rem; }
.section-header p { color: var(--text-muted); font-size: 0.9375rem; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 0.9375rem; margin-bottom: 0.5rem; }

/* Status pills */
.pill {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}
.pill-red { background: var(--red-soft); color: var(--red); }
.pill-amber { background: var(--amber-soft); color: var(--amber); }
.pill-green { background: var(--green-soft); color: var(--green); }
.pill-blue { background: var(--blue-soft); color: var(--blue); }
.pill-purple { background: var(--purple-soft); color: var(--purple); }
.pill-gray { background: var(--gray-soft); color: var(--text-muted); }

/* Status board */
.status-group { margin-bottom: 1.5rem; }
.status-group-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.status-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}
.status-item.is-overdue { border-left: 4px solid var(--red); }
.status-item.is-pending { border-left: 4px solid var(--amber); }
.status-item.is-done { border-left: 4px solid var(--green); opacity: 0.7; }
.status-title { font-weight: 600; font-size: 0.9375rem; }
.status-meta { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.125rem; }
.status-notes { font-size: 0.8125rem; color: var(--text); margin-top: 0.375rem; }
.status-due { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }

/* Lodging matrix */
.lodging-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.8125rem;
}
.lodging-table th, .lodging-table td {
  padding: 0.5rem 0.625rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.lodging-table thead th {
  background: var(--gray-soft);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.lodging-table .date-col {
  font-weight: 600;
  white-space: nowrap;
  min-width: 7rem;
}
.lodging-table .date-col .dow { color: var(--text-muted); font-weight: 400; font-size: 0.75rem; }
.lodging-cell { min-width: 9rem; }
.lodging-cell-empty { color: var(--text-muted); font-size: 0.75rem; font-style: italic; }
.lodging-cell strong { display: block; font-size: 0.8125rem; }
.lodging-cell .who { color: var(--text); font-weight: 600; }
.lodging-cell .hotel { color: var(--text-muted); font-size: 0.75rem; margin-top: 0.125rem; }
.lodging-cell .rooms { color: var(--text-muted); font-size: 0.75rem; margin-top: 0.125rem; }
.lodging-row-camp { background: var(--ocic-yellow-soft); }
.lodging-row-camp .date-col::after {
  content: "CAMP";
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.0625rem 0.375rem;
  background: var(--ocic-yellow);
  color: var(--ocic-black);
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
}

/* Password gate */
.auth-gate {
  display: none;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 1.5rem;
}
.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--ocic-yellow);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.auth-card h1 {
  font-size: 1.375rem;
  margin-bottom: 0.125rem;
  color: var(--ocic-black);
}
.auth-card h1 .accent { color: var(--ocic-yellow); }
.auth-card .auth-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.auth-field {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
}
.auth-field:focus { outline: 2px solid var(--ocic-yellow); outline-offset: 1px; border-color: var(--ocic-yellow); }
.auth-submit {
  width: 100%;
  padding: 0.625rem;
  background: var(--ocic-black);
  color: var(--ocic-yellow);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  font-family: inherit;
  margin-top: 0.25rem;
}
.auth-submit:hover:not(:disabled) { background: #374151; }
.auth-submit:disabled { opacity: 0.6; cursor: wait; }
.auth-error {
  color: var(--red);
  font-size: 0.8125rem;
  min-height: 1.25rem;
  margin-top: 0.5rem;
  text-align: left;
}
.auth-footer {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Timeline (swim-lane Gantt) — full viewport width + height · horizontal scroll for detail */
#timeline-root {
  margin-inline: calc(50% - 50vw);
  padding-inline: 0;
  box-sizing: border-box;
}
.timeline {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.75rem;
  position: relative;
  height: calc(100vh - 220px);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.timeline-scroll {
  overflow: auto;
  flex: 1;
}
.timeline-inner {
  min-width: max-content;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.timeline-header, .timeline-lane {
  display: grid;
  grid-template-columns: 11rem 1fr;
}
.timeline-header {
  background: var(--gray-soft);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 5;
}
.timeline-lane {
  border-bottom: 1px solid var(--border);
  flex: 1;
  min-height: 120px;
}
.timeline-lane:last-child { border-bottom: none; }

.timeline-corner, .timeline-lane-label {
  padding: 0.75rem 1rem;
  background: var(--gray-soft);
  border-right: 1px solid var(--border);
  position: sticky;
  left: 0;
}
.timeline-corner { z-index: 6; }            /* top-left corner above everything */
.timeline-lane-label {
  z-index: 3;                                /* above blocks, below sticky header */
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.timeline-lane-label strong { font-size: 0.9375rem; }
.timeline-lane-label .sublabel { color: var(--text-muted); font-size: 0.75rem; font-weight: 400; margin-top: 0.125rem; }

.timeline-days, .timeline-track {
  display: grid;
  grid-template-columns: repeat(var(--ncols, 18), minmax(180px, 1fr));
}
.timeline-day-head {
  padding: 0.5rem 0.375rem;
  text-align: center;
  border-left: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
}
.timeline-day-head:first-child { border-left: none; }
.timeline-day-head .dow {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.125rem;
}
.timeline-day-head.is-weekend { background: rgba(0,0,0,0.03); }
.timeline-day-head.is-today { background: var(--ocic-yellow); color: var(--ocic-black); }

.timeline-track {
  position: relative;
}
.timeline-track-cell {
  border-left: 1px solid var(--border);
}
.timeline-track-cell:first-child { border-left: none; }
.timeline-track-cell.is-weekend { background: rgba(0,0,0,0.03); }
.timeline-track-cell.is-today { background: rgba(245, 184, 0, 0.08); }

.timeline-block {
  position: absolute;
  top: 0.625rem;
  bottom: 0.625rem;
  padding: 0.75rem 0.9375rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  overflow: hidden;
  z-index: 1;                                /* below sticky label + sticky header */
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.timeline-block-title {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25;
  white-space: normal;
}
.timeline-block-detail {
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.92;
  flex: 1;
  overflow: auto;
  font-weight: 400;
}
.timeline-block-dates {
  font-size: 0.6875rem;
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
  margin-top: auto;
  font-weight: 500;
  white-space: nowrap;
}
.timeline-block-travel { background: var(--blue); color: white; }
.timeline-block-camp { background: var(--ocic-yellow); color: var(--ocic-black); }
.timeline-block-heritage { background: var(--purple); color: white; }
.timeline-block-meeting { background: #6366f1; color: white; }
.timeline-block-buffer { background: #f3f4f6; color: var(--text); box-shadow: inset 0 0 0 1px var(--border); }

.timeline-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.timeline-legend-swatch {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* People */
.people-section + .people-section { margin-top: 1.5rem; }
.people-roster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}
.person-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}
.person-card .person-name {
  font-weight: 700;
  font-size: 0.9375rem;
}
.person-card .person-role {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.375rem;
}
.person-card .person-contact {
  font-size: 0.8125rem;
  line-height: 1.6;
}
.person-card .person-contact div { word-break: break-word; }
.person-card .person-flag {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  margin-top: 0.375rem;
}
.person-card .person-notes { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.375rem; }

.family-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  break-inside: avoid;
}
.family-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ocic-yellow);
  margin-bottom: 0.75rem;
}
.family-card-title { font-size: 1.125rem; font-weight: 700; }
.family-card-home { color: var(--text-muted); font-size: 0.8125rem; }
.family-card-meta { font-size: 0.8125rem; color: var(--text-muted); }
.family-card-meta strong { color: var(--text); }
.family-subsection {
  margin-top: 0.75rem;
}
.family-subsection-title {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.family-members-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.family-members-table th, .family-members-table td {
  padding: 0.375rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.family-members-table th {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}
.family-members-table tr:last-child td { border-bottom: none; }
.family-members-table .medical-flag {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 0.75rem;
}
.family-members-table .dietary-flag {
  display: inline-block;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.75rem;
}

.print-btn {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.print-btn:hover { background: var(--gray-soft); }

@media print {
  .print-btn { display: none; }
  .family-card { page-break-inside: avoid; }
}

/* Daily schedule */
.schedule-list { display: grid; gap: 0.75rem; }
.schedule-day {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  break-inside: avoid;
}
.schedule-day.is-camp-day {
  border-left: 4px solid var(--ocic-yellow);
}
.schedule-day.is-today {
  box-shadow: 0 0 0 2px var(--ocic-yellow);
}
.schedule-day-date { min-width: 7.5rem; }
.schedule-day-date .big { font-size: 1.25rem; font-weight: 700; line-height: 1; }
.schedule-day-date .dow { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; }
.schedule-day-date .camp-pill {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.125rem 0.5rem;
  background: var(--ocic-yellow);
  color: var(--ocic-black);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.schedule-day-title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.375rem; }
.schedule-events { list-style: none; padding: 0; margin: 0 0 0.5rem; font-size: 0.8125rem; }
.schedule-events li {
  padding: 0.25rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.schedule-events .event-tag {
  flex-shrink: 0;
  min-width: 4.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  text-align: center;
  margin-top: 0.1rem;
}
.event-tag-arrival { background: var(--green-soft); color: var(--green); }
.event-tag-departure { background: var(--blue-soft); color: var(--blue); }
.event-tag-travel { background: var(--blue-soft); color: var(--blue); }
.event-tag-camp { background: var(--ocic-yellow); color: var(--ocic-black); }
.event-tag-heritage { background: var(--purple-soft); color: var(--purple); }
.event-tag-meeting { background: var(--purple-soft); color: var(--purple); }
.event-tag-buffer { background: var(--gray-soft); color: var(--text-muted); }
.event-tag-media { background: var(--blue-soft); color: var(--blue); }
.schedule-locations {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--border);
  padding-top: 0.375rem;
  margin-top: 0.375rem;
}
.schedule-locations .loc-item strong { color: var(--text); }
.schedule-locations .loc-item { display: block; margin-top: 0.125rem; }

/* Heritage panels */
.heritage-grid { display: grid; gap: 1rem; }
.heritage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--purple);
  break-inside: avoid;
}
.heritage-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.heritage-title { font-weight: 700; font-size: 1rem; }
.heritage-family { font-size: 0.8125rem; color: var(--text-muted); }
.heritage-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.heritage-meta strong { color: var(--text); }
.heritage-desc { font-size: 0.875rem; margin-bottom: 0.75rem; }
.heritage-list {
  font-size: 0.8125rem;
  margin: 0.25rem 0 0.75rem;
  padding-left: 1.25rem;
}
.heritage-list li { margin-bottom: 0.25rem; }
.heritage-contacts {
  background: var(--gray-soft);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  margin: 0.25rem 0 0.75rem;
}
.heritage-contact {
  font-size: 0.8125rem;
  padding: 0.125rem 0;
}
.heritage-contact:not(:last-child) {
  border-bottom: 1px dashed var(--border);
  margin-bottom: 0.25rem;
  padding-bottom: 0.375rem;
}
.heritage-next {
  background: var(--ocic-yellow-soft);
  border-left: 3px solid var(--ocic-yellow);
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: 0 4px 4px 0;
  margin-top: 0.5rem;
}
.heritage-next strong { color: var(--ocic-black); }

/* Checklists */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.checklist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.checklist-card h3 { margin-bottom: 0.5rem; }
.checklist-card ul { padding-left: 0; list-style: none; margin: 0; }
.checklist-card li {
  padding: 0.375rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.875rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.checklist-card li:last-child { border-bottom: none; }
.checklist-card li::before {
  content: "☐";
  color: var(--text-muted);
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.1;
}

/* Media Team */
.media-hero {
  background: linear-gradient(135deg, var(--ocic-black) 0%, #334155 100%);
  color: white;
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  margin-bottom: 1rem;
}
.media-hero-badge {
  display: inline-block;
  background: var(--ocic-yellow);
  color: var(--ocic-black);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.media-hero-tagline {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.media-hero-why {
  font-size: 0.9375rem;
  color: #e5e7eb;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.media-hero-platforms {
  font-size: 0.8125rem;
  color: #d1d5db;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.equipment-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
}
.equipment-item-head {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.125rem;
}
.equipment-item-head strong { font-size: 0.9375rem; }
.equipment-qty {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--gray-soft);
  padding: 0.125rem 0.375rem;
  border-radius: 999px;
}
.equipment-category {
  color: var(--text-muted);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.equipment-role {
  color: var(--text);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.media-gaps, .media-notes, .media-guardrails {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem 0.75rem 2rem;
  margin: 0;
  font-size: 0.875rem;
}
.media-gaps li, .media-notes li, .media-guardrails li {
  padding: 0.25rem 0;
}
.media-notes { border-left: 3px solid var(--amber); }
.media-guardrails { border-left: 3px solid var(--red); }

.media-cadence {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.media-cadence th, .media-cadence td {
  padding: 0.625rem 0.875rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.media-cadence thead th {
  background: var(--gray-soft);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.media-cadence tbody tr:last-child td { border-bottom: none; }
.media-cadence-timing {
  font-weight: 600;
  white-space: nowrap;
  color: var(--ocic-black);
  min-width: 10rem;
}

.media-hashtags { display: grid; gap: 0.5rem; }
.media-hashtag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.875rem;
}
.media-hashtag-label {
  min-width: 4.5rem;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.media-roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.625rem;
}
.media-role-card {
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.875rem;
  text-align: center;
}
.media-role-card.is-filled {
  border-style: solid;
  border-color: var(--blue);
  background: var(--blue-soft);
}
.media-role-name {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.media-role-assigned {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.media-role-assigned.is-tbd {
  color: var(--amber);
  font-style: italic;
  font-weight: 500;
}
.media-role-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.35;
}

/* Budget — official card */
.budget-official {
  background: linear-gradient(135deg, var(--ocic-yellow) 0%, #FCD34D 100%);
  color: var(--ocic-black);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border: 1px solid #E0A800;
  box-shadow: var(--shadow-md);
}
.budget-official-badge {
  display: inline-block;
  background: var(--ocic-black);
  color: var(--ocic-yellow);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.budget-official-usd {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.budget-official-bif {
  font-size: 0.875rem;
  color: #4B5563;
  margin-bottom: 0.875rem;
}
.budget-official-metrics {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}
.budget-official-source {
  font-size: 0.75rem;
  color: #4B5563;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Budget — scenarios (legacy styles kept in case needed) */
.budget-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.budget-scenario {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
  position: relative;
}
.budget-scenario.is-recommended {
  border-color: var(--ocic-yellow);
  border-width: 2px;
  background: linear-gradient(180deg, var(--ocic-yellow-soft) 0%, var(--surface) 40%);
}
.budget-rec-badge {
  position: absolute;
  top: -0.5rem;
  right: 0.75rem;
  background: var(--ocic-yellow);
  color: var(--ocic-black);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.1875rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.budget-scenario-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.budget-scenario-usd {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ocic-black);
  line-height: 1;
}
.budget-scenario-bif { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.125rem; }
.budget-scenario-cpp { font-size: 0.8125rem; color: var(--text); margin-top: 0.375rem; font-weight: 600; }
.budget-scenario-desc { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.4; }

.budget-trend, .budget-lines {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.budget-trend th, .budget-trend td,
.budget-lines th, .budget-lines td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.budget-trend thead th,
.budget-lines thead th {
  background: var(--gray-soft);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.budget-trend tr.is-projected { background: var(--ocic-yellow-soft); font-weight: 600; }

.budget-lines td.num { text-align: right; font-variant-numeric: tabular-nums; }
.budget-lines td.note { font-size: 0.75rem; color: var(--text-muted); }
.budget-lines tr.is-bold td { font-weight: 700; background: var(--gray-soft); }
.budget-lines tr.is-highlight td { background: var(--ocic-yellow-soft); font-weight: 700; }

.budget-questions {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem 0.75rem 2rem;
  margin: 0;
  font-size: 0.875rem;
}
.budget-questions li { padding: 0.25rem 0; }

@media (max-width: 640px) {
  .budget-trend, .budget-lines { font-size: 0.75rem; }
  .budget-trend th, .budget-trend td, .budget-lines th, .budget-lines td { padding: 0.375rem 0.5rem; }
  .budget-scenario-usd { font-size: 1.5rem; }
}

/* Links hub */
.links-section { margin-bottom: 1.25rem; }
.links-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.links-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
}
.link-item:last-child { border-bottom: none; }
.link-item:hover { background: var(--gray-soft); text-decoration: none; }
.link-item .link-label strong { font-weight: 600; }
.link-item .link-note { color: var(--text-muted); font-size: 0.75rem; }
.link-item .link-arrow { color: var(--text-muted); font-size: 0.875rem; }

/* Supporter portal */
.supporter-hero {
  background: linear-gradient(135deg, var(--ocic-black) 0%, #334155 100%);
  color: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.supporter-hero-headline {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.supporter-hero-sub {
  font-size: 0.9375rem;
  color: #e5e7eb;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.btn-donate-big {
  display: inline-block;
  background: var(--ocic-yellow);
  color: var(--ocic-black);
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-donate-big:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(245, 184, 0, 0.35);
  text-decoration: none;
}

.supporter-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.supporter-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
  text-align: center;
}
.supporter-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ocic-black);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.supporter-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.supporter-prose {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 1rem;
}
.supporter-callout {
  background: var(--ocic-yellow-soft);
  border-left: 4px solid var(--ocic-yellow);
  padding: 0.875rem 1.125rem;
  font-size: 0.9375rem;
  font-style: italic;
  border-radius: 0 4px 4px 0;
  max-width: 720px;
  margin-bottom: 1rem;
}

.supporter-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}
.supporter-partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
}
.supporter-partner-name { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.125rem; }
.supporter-partner-role { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.375rem; }
.supporter-partner-leader { font-size: 0.8125rem; color: var(--text); }

.supporter-cumulative {
  background: var(--ocic-yellow-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.supporter-cumulative-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.supporter-cumulative .supporter-stats { margin-bottom: 0; }

.supporter-projection {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.supporter-past-camp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.supporter-past-camp-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.375rem;
}
.supporter-past-camp-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocic-black);
}
.supporter-past-camp-loc { color: var(--text-muted); font-size: 0.875rem; }
.supporter-past-camp-served {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.supporter-highlights {
  font-size: 0.875rem;
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}
.supporter-highlights li { padding: 0.125rem 0; }
.supporter-past-camp-story {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  background: var(--gray-soft);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.supporter-past-camp-intro {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0.75rem 0 1rem;
  max-width: 780px;
}

.supporter-subsection-title {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--ocic-black);
  margin: 1.25rem 0 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.supporter-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.supporter-service-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
  text-align: center;
}
.supporter-service-count {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocic-black);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.supporter-service-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.3;
}

.supporter-extended-program {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ocic-yellow);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.supporter-ep-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.supporter-ep-label {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ocic-black);
}
.supporter-ep-beneficiaries {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.supporter-ep-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
}

.supporter-challenge {
  margin-bottom: 0.5rem;
}
.supporter-challenge-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: stretch;
}
.supporter-challenge-left, .supporter-challenge-right {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.5;
}
.supporter-challenge-left {
  background: var(--red-soft);
  color: var(--red);
  border-left: 3px solid var(--red);
}
.supporter-challenge-right {
  background: var(--green-soft);
  color: var(--green);
  border-left: 3px solid var(--green);
}

.supporter-quote {
  background: linear-gradient(180deg, var(--ocic-yellow-soft) 0%, rgba(254, 243, 199, 0.3) 100%);
  border-left: 4px solid var(--ocic-yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.supporter-quote-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ocic-black);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.supporter-quote-attr {
  font-size: 0.875rem;
  color: var(--ocic-black);
  line-height: 1.5;
}
.supporter-quote-role {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8125rem;
}
.supporter-quote-context {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .supporter-challenge-row { grid-template-columns: 1fr; }
}

.supporter-team-scale { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; }

/* Volunteer hero + role cards (Team tab) */
.volunteer-hero {
  background: linear-gradient(135deg, var(--ocic-yellow) 0%, #FCD34D 100%);
  color: var(--ocic-black);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}
.volunteer-hero-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ocic-black);
}
.volunteer-hero-text { }
.volunteer-hero-headline {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.volunteer-hero-subline {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #1f2937;
}

.volunteer-origin-split { margin-bottom: 1rem; }
.volunteer-origin-bar {
  display: flex;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.volunteer-origin-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0 0.75rem;
  white-space: nowrap;
}
.volunteer-origin-seg strong {
  font-size: 1.125rem;
  font-weight: 800;
}
.volunteer-origin-burundian {
  background: var(--ocic-black);
  color: var(--ocic-yellow);
}
.volunteer-origin-us {
  background: var(--blue);
  color: white;
}

.volunteer-role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
}
.volunteer-role-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.volunteer-role-count {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ocic-black);
  letter-spacing: -0.03em;
  min-width: 4rem;
  text-align: center;
}
.volunteer-role-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ocic-black);
}
.volunteer-role-org {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}
.volunteer-role-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.volunteer-role-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.volunteer-chip {
  background: var(--gray-soft);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.volunteer-subteams {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.volunteer-subteam {
  background: var(--gray-soft);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
}
.volunteer-subteam-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ocic-black);
  margin-bottom: 0.125rem;
}
.volunteer-subteam-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .volunteer-hero { grid-template-columns: 1fr; text-align: center; }
  .volunteer-hero-number { font-size: 4rem; }
  .volunteer-role-count { font-size: 2.25rem; min-width: auto; }
  .volunteer-role-head { flex-direction: column; text-align: center; gap: 0.5rem; }
}

.supporter-people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}
.supporter-person {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
}
.supporter-person-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.125rem; }
.supporter-person-role { color: var(--text-muted); font-size: 0.8125rem; margin-bottom: 0.5rem; }
.supporter-person-bio { font-size: 0.875rem; line-height: 1.5; }

.supporter-phase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ocic-yellow);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  margin-bottom: 0.625rem;
}
.supporter-phase-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.375rem;
}
.supporter-phase-name { font-weight: 700; font-size: 0.9375rem; }
.supporter-phase-dates { font-size: 0.8125rem; color: var(--text-muted); }
.supporter-phase-desc { font-size: 0.875rem; line-height: 1.55; }

.supporter-story {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.supporter-story-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.375rem; color: var(--ocic-black); }
.supporter-story-body { font-size: 0.9375rem; line-height: 1.6; }

.supporter-give-head {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--ocic-yellow) 0%, #FCD34D 100%);
  border-radius: var(--radius);
  color: var(--ocic-black);
  margin-bottom: 1rem;
}
.supporter-give-headline { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.supporter-give-total { font-size: 1rem; margin-bottom: 0.5rem; }
.supporter-give-total strong { font-size: 1.125rem; }
.supporter-give-source { font-size: 0.8125rem; opacity: 0.75; }

.supporter-categories { display: grid; gap: 0.625rem; }
.supporter-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}
.supporter-category-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.375rem;
  align-items: baseline;
}
.supporter-category-labelblock {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.supporter-category-label { font-weight: 700; font-size: 0.9375rem; color: var(--ocic-black); }
.supporter-category-amount {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.supporter-category-pct { font-weight: 700; color: var(--text-muted); font-variant-numeric: tabular-nums; font-size: 0.8125rem; }
.supporter-category-track {
  background: var(--gray-soft);
  height: 0.5rem;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.supporter-category-fill {
  background: linear-gradient(90deg, var(--ocic-yellow) 0%, #FCD34D 100%);
  height: 100%;
  border-radius: 999px;
}
.supporter-category-desc { font-size: 0.875rem; color: var(--text); line-height: 1.5; margin-bottom: 0.375rem; }
.supporter-category-detail {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: var(--gray-soft);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--ocic-yellow);
  margin-top: 0.5rem;
}

/* Featured stories (fuel, buses, etc.) on Give tab */
.supporter-featured-story {
  background: linear-gradient(135deg, var(--ocic-black) 0%, #334155 100%);
  color: white;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}
.supporter-featured-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
}
.supporter-featured-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.supporter-featured-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.supporter-featured-headline {
  font-size: 1rem;
  color: var(--ocic-yellow);
  font-weight: 600;
  margin-top: 0.25rem;
  line-height: 1.3;
}
.supporter-featured-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin: 0 0 0.75rem;
}
.supporter-featured-body:last-of-type { margin-bottom: 0.75rem; }
.supporter-featured-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.625rem;
  background: rgba(245, 184, 0, 0.15);
  border: 1px solid rgba(245, 184, 0, 0.4);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}
.supporter-featured-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocic-yellow);
  line-height: 1;
}
.supporter-featured-stat-label {
  font-size: 0.8125rem;
  color: #d1d5db;
}

.supporter-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.625rem;
}
.supporter-tier {
  display: block;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.supporter-tier:hover {
  border-color: var(--ocic-yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.supporter-tier-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocic-black);
  margin-bottom: 0.375rem;
}
.supporter-tier-covers { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.4; }

.supporter-watch-link {
  display: block;
  background: #1877f2;
  color: white;
  padding: 0.75rem 1.125rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.supporter-watch-link:hover { background: #166fe5; text-decoration: none; }

.supporter-socials { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.375rem; }
.supporter-social {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--text);
}
.supporter-social:hover { background: var(--gray-soft); text-decoration: none; }
.supporter-social-note { color: var(--text-muted); font-size: 0.75rem; }

/* Landing */
.landing-hero {
  text-align: center;
  padding: 3rem 1.25rem 2rem;
}
.landing-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.landing-hero p { color: var(--text-muted); font-size: 1rem; }
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.trip-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.trip-card:hover {
  border-color: var(--ocic-yellow);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.trip-card .trip-name { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.trip-card .trip-dates { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 0.5rem; }
.trip-card .trip-status { font-size: 0.8125rem; }

.empty-state {
  color: var(--text-muted);
  font-style: italic;
  padding: 1rem 0;
}

/* Responsive */
@media (max-width: 640px) {
  h1 { font-size: 1.25rem; }
  .site-header .container { padding: 0.75rem 1rem; }
  .countdown-big { font-size: 1.25rem; }
  .container { padding: 1rem; }
  .lodging-table { font-size: 0.75rem; }
  .lodging-table th, .lodging-table td { padding: 0.375rem 0.5rem; }
}

/* Print */
@media print {
  .tabs, .site-header .btn-donate { display: none; }
  .section { display: block !important; page-break-before: always; }
  .section:first-of-type { page-break-before: auto; }
  body { background: white; }
  .card { break-inside: avoid; }
}
