/* ============================================================
   Students Feeding Students — styles
   Palette drawn from the SFS logo: ink black, warm paper,
   rust (the logo's arcs), cream text on dark.
   ============================================================ */

:root {
  --ink: #0c0b09;
  --ink-soft: #161411;
  --paper: #faf7f2;
  --paper-deep: #f1ece3;
  --line: #e2dbcf;
  --line-dark: #26221d;
  --rust: #b34a2b;
  --rust-bright: #d95f38;
  --cream: #efeae2;
  --muted: #6b655c;
  --muted-light: #a8a094;

  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, sans-serif;
  --font-script: "Caveat", cursive;

  --radius: 14px;
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- type ---------- */

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: 0.6em; }

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

p + p { margin-top: 1em; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rust);
  margin-bottom: 1.1em;
}

.eyebrow-light { color: var(--rust-bright); }

.script-accent {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.18em;
  color: var(--rust-bright);
  line-height: 1;
}

.section-light .script-accent,
.section-paper .script-accent { color: var(--rust); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7em 1.4em;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-lg { font-size: 1.02rem; padding: 0.85em 1.7em; }

.btn-fill { background: var(--rust); color: #fff; }
.btn-fill:hover { background: var(--rust-bright); transform: translateY(-1px); }

.btn-ghost { border-color: rgba(239, 234, 226, 0.4); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream); }

.btn-ghost-dark { border-color: rgba(12, 11, 9, 0.25); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--ink); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled { border-bottom-color: #26221d; }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
  min-width: 0;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-wordmark {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-wordmark em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  font-size: 1.35em;
  color: var(--rust-bright);
  letter-spacing: 0;
  padding: 0 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links > a:not(.btn) {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links > a:not(.btn):hover { opacity: 1; }

.nav-donate { margin-left: 0.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- animations: keyframes ---------- */

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes wordIn {
  from { opacity: 0; transform: translateY(0.55em) rotate(1.5deg); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.4) rotate(-10deg); }
  62% { opacity: 1; transform: scale(1.18) rotate(3deg); }
  82% { transform: scale(0.94) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes drawArc {
  to { stroke-dashoffset: 0; }
}

@keyframes writeIn {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---------- animations: hero load sequence ---------- */

.anim-rise {
  animation: riseIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}

.hero-title .w {
  display: inline-block;
  animation: wordIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title .w:nth-child(1) { animation-delay: 0.25s; }
.hero-title .w:nth-child(2) { animation-delay: 0.34s; }
.hero-title .w:nth-child(3) { animation-delay: 0.43s; }
.hero-title .w:nth-child(4) { animation-delay: 0.52s; }
.hero-title .w:nth-child(5) { animation-delay: 0.61s; }
.hero-title .w:nth-child(6) { animation-delay: 0.70s; }
.hero-title .w:nth-child(8) { animation-delay: 0.79s; }

.hero-title .w-pop {
  animation-name: popIn;
  animation-duration: 0.7s;
  animation-delay: 1.05s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* breathing room so the script ascenders aren't clipped while compositing */
  padding: 0.3em 0.18em;
  margin: -0.3em -0.18em;
}

.hero-stats li {
  animation: riseIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(1.5s + var(--i, 0) * 0.13s);
}

.hero-figure {
  animation: riseIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 1.45s;
}

.hero-arcs path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawArc 0.9s ease-out forwards;
}

.hero-arcs path:nth-child(1) { animation-delay: 1.9s; }
.hero-arcs path:nth-child(2) { animation-delay: 2.15s; }

.hero-figure figcaption .script-accent {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: writeIn 1.1s ease-out 2.35s forwards;
}

/* ---------- animations: scroll progress ---------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rust-bright);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 100;
  pointer-events: none;
}

/* ---------- animations: staggered scroll reveals ---------- */

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
}

/* ---------- animations: micro-interactions ---------- */

.nav-logo { transition: transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1); }

.nav-brand:hover .nav-logo { transform: rotate(360deg); }

.btn span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover span { transform: translateX(4px); }

.card,
.help-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(12, 11, 9, 0.09);
}

img.photo {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

img.photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(12, 11, 9, 0.16);
}

.stat { transition: transform 0.3s ease, border-color 0.3s ease; }

.stat:hover { transform: translateY(-4px); }

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

details[open] .paa-body { animation: fadeSlide 0.32s ease; }

/* ---------- summer notice ---------- */

.notice {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 1.5rem;
}

.notice p {
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--ink);
}

.notice strong { color: var(--rust); }

.notice a { color: var(--rust); font-weight: 600; }

/* ---------- hero ---------- */

.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 5.5rem 1.5rem 6rem;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.hero h1 { color: #fff; margin: 0.4em 0 0.5em; }

.hero-sub {
  font-size: 1.12rem;
  color: var(--muted-light);
  max-width: 34em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-stats {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  max-width: 11em;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--rust-bright);
  line-height: 1.2;
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--muted-light);
  line-height: 1.4;
  margin-top: 0.2em;
}

.hero-figure {
  position: relative;
  margin: 0;
}

.hero-figure img {
  width: 100%;
  border-radius: var(--radius);
}

.hero-figure figcaption {
  text-align: right;
  margin-top: 0.7rem;
}

.hero-figure .script-accent { font-size: 1.9rem; }

.hero-arcs {
  position: absolute;
  width: 130px;
  top: -46px;
  right: -26px;
  color: var(--rust);
  transform: rotate(12deg);
  z-index: 1;
}

/* ---------- photos ---------- */

img.photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* ---------- photo placeholders ---------- */

.photo-slot {
  position: relative;
  border: 2px dashed rgba(150, 140, 125, 0.5);
  border-radius: var(--radius);
  background: rgba(150, 140, 125, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.photo-hero { aspect-ratio: 4 / 4.6; }
.photo-tall { aspect-ratio: 4 / 3; }
.photo-wide { aspect-ratio: 16 / 10; }

.photo-label {
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted-light);
  line-height: 1.3;
}

.section-light .photo-label,
.section-paper .photo-label { color: var(--muted); }

.photo-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.5em;
  opacity: 0.8;
}

/* ---------- marquee ---------- */

.marquee {
  background: var(--rust);
  color: #fff;
  overflow: hidden;
  padding: 0.65rem 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

/* ---------- sections ---------- */

.section { padding: 6rem 1.5rem; }
.section-tight { padding-top: 4rem; }

.section-light { background: var(--paper); color: var(--ink); }
.section-paper { background: var(--paper-deep); color: var(--ink); }

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-dark h2 { color: #fff; }

.container { max-width: var(--container); margin: 0 auto; }
.container-narrow { max-width: 760px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.grid-2-center { align-items: center; }

.section-lede {
  font-size: 1.15rem;
  color: var(--muted-light);
  max-width: 36em;
  margin-bottom: 3rem;
}

/* ---------- mission ---------- */

.mission-side {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.pull-quote {
  border-left: 3px solid var(--rust);
  padding: 0.3rem 0 0.3rem 1.3rem;
}

.pull-quote p {
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6em;
}

/* ---------- cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}

.card-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--rust-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.card-mark svg { width: 22px; height: 22px; }

.card p { font-size: 0.95rem; color: var(--muted); }

.partner-line {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 46em;
}

/* ---------- stats ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.stat {
  border-top: 3px solid var(--rust);
  background: var(--ink-soft);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.5rem 1.3rem;
}

.stat strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--rust-bright);
  display: block;
  margin-bottom: 0.35em;
  line-height: 1;
}

.stat p { font-size: 0.9rem; color: var(--muted-light); }

.stat-note {
  margin-top: 2.2rem;
  font-size: 0.82rem;
  color: var(--muted-light);
  opacity: 0.75;
}

.stat-note a { color: var(--rust-bright); }

.impact-block { margin-top: 5.5rem; }

.quote-dark {
  margin-top: 3rem;
  max-width: 34em;
}

.quote-dark p {
  font-family: var(--font-script);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cream);
}

.quote-dark cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted-light);
  margin-top: 0.6em;
}

/* ---------- what's next ---------- */

.next-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--rust);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  max-width: 780px;
}

.next-card h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.next-body { color: var(--muted); max-width: 42em; }

.next-body strong { color: var(--ink); }

.next-updated {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.85;
  margin-top: 1.3rem;
}

.next-updated a { color: var(--rust); font-weight: 600; }

/* ---------- help ---------- */

.help-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.help-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.help-card p { color: var(--muted); font-size: 0.97rem; }

.help-card .btn { margin-top: auto; }

.help-card-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.help-card-primary h3 { color: #fff; }
.help-card-primary p { color: var(--muted-light); }

.help-big {
  font-size: 1.25rem !important;
  color: var(--cream) !important;
  line-height: 1.4;
}

.help-big strong { color: var(--rust-bright); }

.follow-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}

.follow-links a {
  color: var(--rust);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.97rem;
}

.follow-links a:hover { text-decoration: underline; }

/* ---------- people also ask ---------- */

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  margin: 0.5rem 0 1.6rem;
  color: var(--muted);
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(12, 11, 9, 0.05);
}

.search-bar svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--rust); }

.paa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.paa-item { border-bottom: 1px solid var(--line); }
.paa-item:last-child { border-bottom: none; }

.paa-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.4rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.paa-item summary::-webkit-details-marker { display: none; }

.paa-item summary:hover { background: var(--paper); }

.paa-item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-top: -4px;
}

.paa-item[open] summary::after { transform: rotate(225deg); margin-top: 4px; }

.paa-item[open] summary { font-weight: 600; }

.paa-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.paa-body a { color: var(--rust); font-weight: 600; }

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #26221d;
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rust-bright);
  margin-bottom: 0.4rem;
}

.footer-mission {
  font-size: 0.95rem;
  color: var(--muted-light);
  max-width: 24em;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rust-bright);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-col a:hover { opacity: 1; text-decoration: underline; }

.footer-hint { font-size: 0.8rem; color: var(--muted-light); }

.footer-legal {
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--muted-light);
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- focus ---------- */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--rust-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-figure figcaption .script-accent { clip-path: none; }
  .hero-arcs path { stroke-dashoffset: 0; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-inner { gap: 2.5rem; }
  .hero-arcs { width: 90px; top: -30px; right: -12px; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid #26221d;
    padding: 0.5rem 1.5rem 1.2rem;
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links > a:not(.btn) { padding: 0.7rem 0; font-size: 1rem; }

  .nav-donate { margin: 0.8rem 0 0; }

  .nav-toggle { display: flex; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-wordmark { font-size: 0.8rem; }

  .section { padding: 4rem 1.25rem; }

  .hero { padding: 3.5rem 1.25rem 4rem; }

  .hero-stats { gap: 1.5rem; }

  .stat-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
