/* ═══════════════════════════════════════════════
   The Way of Emptiness, styles.css
   Hybrid dark/light design system
═══════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  /* Core palette */
  --bg: #FAF7F3;
  --bg-warm: #F2EDE5;
  --bg-stone: #E8E0D5;
  --dark: #0D0D0D;
  --dark-mid: #1A1212;
  --dark-warm: #110E0A;

  /* Text */
  --text: #1A1A1A;
  --text-light: #6B5E52;
  --text-cream: #F0E6D3;
  --text-cream-muted: rgba(240, 230, 211, 0.7);

  /* Accents */
  --gold: #C4972A;
  --gold-dark: #8B6914;
  --rust: #7D3F2A;
  --rust-light: #A05038;
  --stone: #9B8E82;
  --border-light: #D4C5B5;
  --border-dark: #2A2218;

  --white: #FFFFFF;

  /* Legacy aliases used by some components */
  --warm-mid: #4A3728;
  --border: #D4C5B5;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ─── NAV (always dark) ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  transition: padding 0.3s ease;
}

nav.scrolled {
  padding: 14px 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-cream);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(240, 230, 211, 0.75);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-cream);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── SECTION BASE ─── */
.section {
  padding: 120px 64px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.text-col {
  max-width: 680px;
  margin: 0 auto;
}

/* ─── DARK / LIGHT SECTION CLASSES ─── */
.section-dark {
  background: var(--dark);
  color: var(--text-cream);
}

.section-dark .eyebrow,
.section-dark .section-label {
  color: var(--gold);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--text-cream);
}

.section-dark p,
.section-dark .body {
  color: var(--text-cream-muted);
}

.section-dark .pull-quote {
  color: var(--gold);
  border-left-color: var(--gold-dark);
}

.section-dark .pull-quote-center {
  border-left: none;
}

.section-dark .attribution {
  color: var(--text-cream-muted);
}

.section-dark .card {
  background: #1A1410;
  border-color: var(--border-dark);
}

.section-dark .card .card-label {
  color: var(--gold);
}

.section-dark .card p {
  color: var(--text-cream-muted);
}

.section-dark .cta-fine {
  color: var(--text-cream-muted);
}

.section-dark .text-link {
  color: var(--gold);
}

.section-dark .cred-list {
  border-top-color: var(--border-dark);
}

.section-dark .cred-item {
  color: var(--text-cream-muted);
}

.section-dark .cred-item::before {
  color: var(--gold);
}

.section-dark .poem {
  color: var(--text-cream-muted);
}

.section-light {
  background: var(--bg);
  color: var(--text);
}

.section-light-warm {
  background: var(--bg-warm);
  color: var(--text);
}

.section-light .eyebrow,
.section-light-warm .eyebrow,
.section-light .section-label,
.section-light-warm .section-label {
  color: var(--gold-dark);
}

.section-light .pull-quote,
.section-light-warm .pull-quote {
  color: var(--dark-mid);
  border-left-color: var(--gold-dark);
}

/* ─── BUTTONS ─── */
.btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1.5px solid var(--rust);
  color: var(--rust);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

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

/* Dark section button variant */
.section-dark .btn-outline,
.hero .btn-outline,
.hero-text-only .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.section-dark .btn-outline:hover,
.hero .btn-outline:hover,
.hero-text-only .btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-outline-sm {
  font-size: 0.72rem;
  padding: 10px 24px;
}

/* Legacy .btn alias for light sections */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1.5px solid var(--rust);
  color: var(--rust);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

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

.btn-sm {
  font-size: 0.72rem;
  padding: 10px 24px;
}

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: block;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: block;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--warm-mid);
  margin-bottom: 24px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--warm-mid);
  margin-bottom: 20px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--warm-mid);
  margin-bottom: 16px;
}

.subhead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--stone);
  margin-bottom: 40px;
}

p.body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}

p.body:last-child {
  margin-bottom: 0;
}

/* ─── DIVIDER ─── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold-dark);
  margin: 48px auto;
  opacity: 0.6;
}

.divider-left {
  margin-left: 0;
}

/* ─── PULL QUOTE ─── */
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.55;
  color: var(--dark-mid);
  border-left: 3px solid var(--gold-dark);
  padding-left: 32px;
  margin: 56px 0;
  max-width: 640px;
}

.pull-quote-center {
  border-left: none;
  padding-left: 0;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 760px;
  margin: 0 auto;
}

.attribution {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 20px;
  display: block;
}

/* ─── HERO, photo version (homepage) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 5, 0.55) 0%,
    rgba(10, 8, 5, 0.72) 50%,
    rgba(10, 8, 5, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 40px;
}

.hero-content .eyebrow {
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-content h1 {
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--text-cream);
  margin-bottom: 32px;
}

.hero-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: rgba(240, 230, 211, 0.8);
  margin-bottom: 56px;
}

/* Animated scroll line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: translateX(-50%) scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: translateX(-50%) scaleY(1); }
  100% { opacity: 0; transform: translateX(-50%) scaleY(1); transform-origin: bottom; }
}

/* ─── HERO, text-only dark (inner pages) ─── */
.hero-text-only {
  background: var(--dark);
  padding: 160px 40px 120px;
  text-align: center;
}

.hero-text-only .eyebrow {
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-text-only h1 {
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--text-cream);
  max-width: 760px;
  margin: 0 auto 28px;
}

.hero-text-only .hero-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(240, 230, 211, 0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-text-only::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-dark);
  margin: 56px auto 0;
}

/* ─── POEM BLOCK ─── */
.poem {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 2;
  color: var(--warm-mid);
}

.poem p {
  margin: 0;
  line-height: 2;
}

/* ─── TWO COLUMN ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.two-col.wide-left {
  grid-template-columns: 1.2fr 1fr;
}

.two-col.wide-right {
  grid-template-columns: 1fr 1.2fr;
}

/* ─── CARDS ─── */
.card {
  border: 1px solid var(--border-light);
  background: var(--bg-warm);
  padding: 48px 40px;
}

.card-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: block;
}

.card-body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--warm-mid);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── VIDEO CARDS ─── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.video-card {
  border: 1px solid var(--border-light);
  background: var(--bg-warm);
}

.video-thumb {
  background: var(--bg-stone);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--stone);
  margin-left: 3px;
}

.video-card-body {
  padding: 28px 28px 32px;
}

.video-card-body .card-label {
  margin-bottom: 12px;
}

.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--warm-mid);
  margin-bottom: 10px;
  line-height: 1.3;
}

.video-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── VIDEO FILTER ─── */
.filter-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 56px;
}

.filter-btn {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

/* ─── OFFERING CARDS ─── */
.offering-featured {
  border: 1px solid var(--border-light);
  background: var(--bg-warm);
  padding: 80px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.offering-card {
  border: 1px solid var(--border-light);
  background: var(--bg);
  padding: 56px 48px;
  margin-bottom: 0;
}

.offering-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--warm-mid);
  margin-bottom: 12px;
  line-height: 1.2;
}

.offering-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--stone);
  margin-bottom: 28px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin: 32px 0 40px;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.detail-item .detail-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}

.detail-item .detail-value {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text);
}

.cost-line {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--warm-mid);
  margin: 20px 0 32px;
}

/* ─── CTA BLOCK ─── */
.cta-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 60px;
  text-align: center;
}

/* CTA in light sections gets bordered box */
.section-light .cta-block,
.section-light-warm .cta-block {
  background: var(--bg-stone);
  border: 1px solid var(--border-light);
}

/* CTA in dark sections is transparent */
.section-dark .cta-block {
  background: transparent;
  border: 1px solid var(--border-dark);
}

.cta-block .eyebrow {
  text-align: center;
}

.cta-fine {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ─── STORY PAGE ─── */
.story-section {
  max-width: 680px;
  margin: 0 auto;
}

.part-header {
  margin-bottom: 48px;
}

/* ─── CONTACT FORM ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.form-group {
  margin-bottom: 36px;
}

.form-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border-light);
  background: transparent;
  padding: 12px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--rust);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--stone);
  font-style: italic;
}

.contact-aside p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact-aside a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── COMMUNITY SECTION ─── */
.community-body {
  max-width: 680px;
  margin: 0 auto;
}

/* ─── CREDENTIALS ─── */
.cred-list {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.cred-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.cred-item::before {
  content: '—';
  color: var(--gold-dark);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── LINK STYLE ─── */
a.text-link {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

a.text-link:hover {
  opacity: 0.75;
}

/* ─── FOOTER (always dark) ─── */
footer {
  background: var(--dark-warm);
  color: var(--text-cream-muted);
  border-top: 1px solid var(--border-dark);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-cream);
}

.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-cream-muted);
  margin-top: 6px;
  letter-spacing: 0.06em;
}

.footer-copy {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-cream-muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: flex-end;
}

.footer-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-cream-muted);
  transition: color 0.2s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 20px 28px;
  }

  nav.scrolled {
    padding: 14px 28px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border-dark);
    flex-direction: column;
    padding: 24px 28px 32px;
    gap: 20px;
    align-items: flex-start;
  }

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

  .hamburger {
    display: flex;
  }

  .hero-text-only {
    padding: 120px 28px 80px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .section {
    padding: 80px 28px;
  }

  .two-col,
  .two-col.wide-left,
  .two-col.wide-right {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .card-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .offering-featured {
    padding: 48px 28px;
    grid-template-columns: 1fr !important;
  }

  .offering-featured img {
    min-height: 280px !important;
  }

  .cta-block {
    padding: 60px 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    text-align: center;
    gap: 28px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .community-body {
    max-width: none;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.6rem;
  }

  .hero-text-only {
    padding: 110px 20px 72px;
  }

  .section {
    padding: 72px 20px;
  }

  .offering-card {
    padding: 40px 28px;
  }

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

  .card {
    padding: 36px 28px;
  }

  .filter-row {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
