/* ===================================================================
   FrontlineDoc — DRC Ebola Response
   Shared stylesheet for all pages
   =================================================================== */

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

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --gold: #e67e22;
  --gold-dark: #cf6d17;
  --cream: #fdf6ec;
  --charcoal: #1a1a1a;
  --gray: #555;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --max-w: 980px;
  --content-w: 860px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red-dark); }

/* ── Skip link (accessibility) ── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
  font-family: sans-serif;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ── NAVBAR ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #ececec;
}
.nav-inner {
  max-width: var(--max-w);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 700;
  flex-shrink: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.brand-text { line-height: 1.1; }
.brand-text .name {
  font-family: sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-text .sub {
  display: block;
  font-family: sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--light-gray); color: var(--red-dark); }
.nav-links a[aria-current="page"] { color: var(--red); }
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  box-shadow: 0 2px 10px rgba(230,126,34,0.35);
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.2s;
}

/* ── BUTTONS ── */
.btn-donate {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-family: sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(230,126,34,0.4);
}
.btn-donate:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-note {
  display: block;
  margin-top: 10px;
  font-family: sans-serif;
  font-size: 0.8rem;
  color: #a09080;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--red-dark);
  border: 2px solid var(--red);
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ── HERO (home) ── */
.hero {
  background: linear-gradient(160deg, #1a0a0a 0%, #2d1010 50%, #1a1a2e 100%);
  color: var(--white);
  text-align: center;
  padding: 84px 24px 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/hero.jpg') center/cover no-repeat;
  opacity: 0.28;
}
.hero-content { position: relative; max-width: var(--content-w); margin: auto; }
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: #e8a87c; }
.hero p.lead {
  font-size: 1.15rem;
  color: #d4c5b5;
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ── SUBPAGE HERO ── */
.subhero {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 60%, #1a1a2e 100%);
  color: #fff;
  padding: 64px 24px 52px;
  text-align: center;
}
.subhero .section-inner { max-width: var(--content-w); }
.subhero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.subhero h1 span { color: #e8a87c; }
.subhero p {
  color: #d4c5b5;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--light-gray);
  font-family: sans-serif;
  font-size: 0.8rem;
}
.breadcrumb ol {
  max-width: var(--max-w);
  margin: auto;
  padding: 10px 24px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--gray);
}
.breadcrumb a { color: var(--red-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li::after { content: '›'; margin-left: 6px; color: #aaa; }
.breadcrumb li:last-child::after { content: ''; }

/* ── STATS BAND ── */
.stats-band { background: var(--red); color: white; padding: 32px 24px; }
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  max-width: var(--content-w);
  margin: auto;
  text-align: center;
}
.stat-item .num {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: sans-serif;
  line-height: 1;
}
.stat-item .label {
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

/* ── SECTIONS ── */
section { padding: 60px 24px; }
.section-inner { max-width: var(--content-w); margin: auto; }
.section-inner.wide { max-width: var(--max-w); }

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.25;
}
h2 .accent { color: var(--red); }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
p + p { margin-top: 14px; }
.lead-text { font-size: 1.12rem; color: #333; }

/* ── ALERT BOX ── */
.alert-box {
  background: #fff4f4;
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
.alert-box strong { color: var(--red-dark); }

/* ── QUOTE ── */
blockquote {
  background: var(--charcoal);
  color: #e8d8c8;
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 4px;
  font-style: italic;
  font-size: 1.05rem;
  position: relative;
}
blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--red);
  position: absolute;
  top: 4px;
  left: 16px;
  line-height: 1;
  font-style: normal;
}
blockquote p { padding-left: 24px; }
blockquote p + p { margin-top: 10px; }
blockquote cite {
  display: block;
  padding-left: 24px;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.82rem;
  font-family: sans-serif;
  color: #a09080;
  letter-spacing: 0.04em;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.card {
  background: white;
  border-radius: 6px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 3px solid var(--red);
}
.card-icon { font-size: 2rem; margin-bottom: 10px; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: 0.88rem; color: var(--gray); font-family: sans-serif; line-height: 1.5; }

/* ── SECTION BACKGROUNDS ── */
.bg-gray { background: var(--light-gray); }
.bg-cream { background: var(--cream); }
.bg-rose { background: #fff8f8; }
.about-section a { color: var(--red-dark); }
.about-section a:hover { text-decoration: underline; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 100%);
  color: white;
  text-align: center;
}
.cta-section h2 { color: #e8d8c8; }
.cta-section p { color: #a09080; max-width: 560px; margin: 0 auto 28px; }
.cta-section .btn-donate { font-size: 1.2rem; padding: 18px 52px; }

/* ── BIOS ── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
.bio-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 28px;
  align-items: start;
}
.bio-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 8px;
  background: linear-gradient(135deg, #2d1010, #1a1a2e);
}
.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #2d1010, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8a87c;
  font-family: sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}
.bio-name { font-size: 1.4rem; margin-bottom: 2px; }
.bio-role {
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 14px;
}
.bio-body p { font-size: 0.98rem; }
.bio-links {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.bio-links a {
  font-family: sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--red-dark);
}
.bio-links a:hover { text-decoration: underline; }

/* ── HELP / STEPS ── */
.help-steps { counter-reset: step; margin-top: 28px; }
.help-step {
  position: relative;
  padding: 22px 24px 22px 76px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 18px;
}
.help-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.help-step h3 { margin-bottom: 4px; }
.help-step p { font-family: sans-serif; font-size: 0.92rem; color: var(--gray); }

/* ── SHARE BUTTONS ── */
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  background: var(--charcoal);
  transition: opacity 0.15s;
}
.share-btn:hover { opacity: 0.88; }
.share-btn.fb { background: #1877f2; }
.share-btn.x  { background: #000; }
.share-btn.wa { background: #25d366; }
.share-btn.em { background: var(--gray); }

/* ── FAQ ── */
.faq { margin-top: 28px; }
.faq details {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 16px;
  font-size: 1.5rem;
  color: var(--red);
  font-family: sans-serif;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; }
.faq .faq-body { padding: 0 22px 20px; font-family: sans-serif; font-size: 0.94rem; color: var(--gray); }
.faq .faq-body a { color: var(--red-dark); }

/* ── TIMELINE / UPDATES ── */
.timeline { margin-top: 32px; border-left: 3px solid #e6d8c8; padding-left: 28px; }
.update-entry { position: relative; margin-bottom: 36px; }
.update-entry::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--red);
}
.update-date {
  font-family: sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.update-entry h3 { font-size: 1.2rem; margin-bottom: 6px; }
.update-entry p { font-size: 0.98rem; }
.update-entry .src {
  font-family: sans-serif;
  font-size: 0.8rem;
  margin-top: 6px;
}

/* ── CALLOUT / DONATE INLINE ── */
.donate-inline {
  background: var(--cream);
  border: 1px solid #efe2cf;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  margin: 36px 0;
}
.donate-inline h3 { font-size: 1.3rem; margin-bottom: 10px; }
.donate-inline p { font-family: sans-serif; font-size: 0.92rem; color: var(--gray); margin-bottom: 18px; }

/* ── SOURCES ── */
.sources-section { background: #f9f9f9; }
.sources-section h2 { font-size: 1.1rem; color: var(--gray); }
.sources-list { list-style: none; margin-top: 14px; }
.sources-list li {
  font-family: sans-serif;
  font-size: 0.82rem;
  color: var(--gray);
  padding: 4px 0;
}
.sources-list a { color: var(--red-dark); text-decoration: none; }
.sources-list a:hover { text-decoration: underline; }

/* ── PAGE LINKS GRID (home) ── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.explore-card {
  display: block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px 22px;
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.15s, box-shadow 0.15s;
}
.explore-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.explore-card .ec-icon { font-size: 1.8rem; margin-bottom: 8px; }
.explore-card h3 { font-size: 1.05rem; color: var(--red-dark); }
.explore-card p { font-family: sans-serif; font-size: 0.86rem; color: var(--gray); margin-top: 4px; }
.explore-card .ec-go { font-family: sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--gold-dark); margin-top: 10px; display: inline-block; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.gallery-item {
  position: relative;
  border: 0; padding: 0; margin: 0;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
  background: #2d1010;
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #fff; font-family: sans-serif; font-size: .8rem; line-height: 1.4;
  padding: 28px 12px 10px; text-align: left;
  opacity: 0; transition: opacity .25s;
}
.gallery-item:hover .cap, .gallery-item:focus .cap { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(10,5,5,.94);
  display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 80vh; border-radius: 6px; box-shadow: 0 12px 50px rgba(0,0,0,.6); }
.lightbox .lb-cap { color: #e8d8c8; font-family: sans-serif; font-size: .92rem; margin-top: 14px; max-width: 700px; text-align: center; }
.lightbox .lb-close { position: absolute; top: 16px; right: 22px; background: none; border: 0; color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 1.8rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; }
.lightbox .lb-prev { left: 18px; } .lightbox .lb-next { right: 18px; }
.lightbox .lb-nav:hover { background: rgba(255,255,255,.25); }
@media (max-width: 520px) { .lightbox .lb-nav { width: 40px; height: 40px; font-size: 1.5rem; } }

/* ── VIDEO SECTION ── */
.video-section { background: var(--charcoal); }
.video-flex {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
  max-width: var(--content-w);
  margin: auto;
}
.video-flex h2 { color: #fff; }
.video-flex h2 .accent { color: #e8a87c; }
.video-flex p { color: #cbb9a8; }
.video-portrait {
  width: 340px;
  max-width: 100%;
  aspect-ratio: 982 / 1920;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  display: block;
  background: #000;
}
@media (max-width: 700px) {
  .video-flex { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* ── QR / SHARE GRAPHICS ── */
.qr-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 24px;
  margin-top: 24px;
}
.qr-block img { width: 200px; height: 200px; border-radius: 8px; }
.qr-block h3 { margin-bottom: 6px; }
.qr-block p { font-family: sans-serif; font-size: 0.92rem; color: var(--gray); }
.graphics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.graphic-dl {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  transition: box-shadow 0.15s, transform 0.15s;
}
.graphic-dl:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.graphic-dl img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
.graphic-dl span { font-family: sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--red-dark); }
@media (max-width: 560px) {
  .qr-block { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* ── FOOTER ── */
footer.site-footer {
  background: var(--charcoal);
  color: #888;
  font-family: sans-serif;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: auto;
  padding: 44px 24px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.footer-inner h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-inner a { color: #b9b9b9; text-decoration: none; }
.footer-inner a:hover { color: #fff; text-decoration: underline; }
.footer-inner ul { list-style: none; }
.footer-inner li { padding: 3px 0; }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand p { margin-top: 10px; line-height: 1.6; color: #999; }
.footer-bottom {
  border-top: 1px solid #2c2c2c;
  text-align: center;
  padding: 16px 24px;
  font-size: 0.78rem;
  color: #666;
}
.footer-bottom a { color: #999; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-inner { justify-content: flex-end; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 16px 16px;
    gap: 2px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .bio-card { grid-template-columns: 1fr; gap: 18px; }
  .bio-photo, .bio-photo-placeholder { max-width: 180px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 18px 48px; }
  .stats-grid { gap: 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 48px 20px; }
}
