/* ============================================================
   DESIGN SYSTEM – egyszazalek.hit.hu
   ============================================================ */

/* Custom fonts for hero titles only */
@font-face {
  font-family: 'Founders Grotesk';
  src: url('../fonts/FOUNDERSGROTESK-LIGHT.OTF') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  ascent-override: 85%;
  descent-override: 20%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Founders Grotesk';
  src: url('../fonts/FOUNDERSGROTESK-REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  ascent-override: 85%;
  descent-override: 20%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Founders Grotesk';
  src: url('../fonts/FOUNDERSGROTESK-MEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  ascent-override: 85%;
  descent-override: 20%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Founders Grotesk';
  src: url('../fonts/FOUNDERSGROTESK-SEMIBOLD.OTF') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  ascent-override: 85%;
  descent-override: 20%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Founders Grotesk';
  src: url('../fonts/FOUNDERSGROTESK-BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  ascent-override: 85%;
  descent-override: 20%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Roxborough CF';
  src: url('../fonts/Roxborough CF.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #6b4fa0;
  --purple-dark: #665d93;
  --purple-mid: #665d93;
  --purple-deep: #665d93;
  --mint: #bccfdd;
  --mint-light: #d6e5ef;

  --black: #0a0a0a;
  --dark-grey: #1a1a1a;
  --mid-grey: #666666;
  --light-grey: #f4f4f4;
  --white: #ffffff;

  --font-main: 'Founders Grotesk', system-ui, sans-serif;
  --font-logo: 'Founders Grotesk', system-ui, sans-serif;
  --section-pad: 8rem 3vw;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  white-space: nowrap;
}

.logo-icon-dark {
  filter: brightness(0) saturate(100%) invert(20%) sepia(21%) saturate(1512%) hue-rotate(218deg) brightness(91%) contrast(93%);
  /* Hit Blue simulation or just black */
}

/* On scrolled navbar and footer, we might need different colors */
.navbar.scrolled .logo-text {
  color: var(--black);
}

.footer-modern .logo-text {
  color: var(--black);
  font-size: 1.05rem;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
  position: relative;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 3rem;
}

/* ── Section wrappers ────────────────────────────────────── */
.section-light {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Finom pont-rács háttérminta a világos szekciókon */
.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.120) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Halvány átmenetek a szekciók élein */
.section-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--white) 0%, transparent 6rem),
    linear-gradient(to top, var(--white) 0%, transparent 6rem);
  pointer-events: none;
  z-index: 0;
}

.section-dark {
  padding: var(--section-pad);
  background: linear-gradient(150deg, var(--purple-deep) 0%, #2a1a4a 55%, #1a2a3a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Ambiens sarokfény foltok a sötét szekciókon */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 90% 10%, rgba(133, 222, 199, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 10% 90%, rgba(133, 50, 200, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section-light+.section-light {
  border-top: 1px solid var(--light-grey);
}

/* ── Section header ──────────────────────────────────────── */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1rem;
  text-align: inherit;
  margin-left: 0;
  padding-left: 0;
}

.section-label.mint {
  color: var(--mint);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-title.white {
  color: var(--white);
}

.body-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--mid-grey);
  max-width: 55ch;
}

.section-dark .body-text {
  color: #aaaaaa;
}

.mint-text {
  color: var(--mint);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: linear-gradient(150deg, var(--purple-deep) 0%, #2a1a4a 55%, #1a2a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

/* ── Hero background video ───────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  user-select: none;
}

.hero-video.is-playing {
  opacity: 1;
}

/* Hero dekoráció: sötét overlay + ambient fénykör (video felett, tartalom alatt) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 120%, rgba(133, 222, 199, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 85% 15%, rgba(133, 222, 199, 0.05) 0%, transparent 55%),
    rgba(8, 5, 20, 0.58);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 6vw;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  border: 1px solid rgba(188, 207, 221, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.1em;
}

.hero-title-svg {
  width: 100%;
  max-width: min(1100px, 88vw);
  height: auto;
  display: block;
}

/* Line 1 – "HITTEL" : Founders Grotesk bold condensed */
.hero-title-line1 {
  font-family: 'Founders Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--white);
  align-self: flex-start;
}

/* Line 2 – "Magyarországért!" : Roxborough CF italic, larger, shifted right */
.hero-title-line2 {
  font-family: 'Roxborough CF', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.7em;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--white);
  text-transform: none;
  align-self: flex-end;
  margin-right: -0.05em;
  margin-top: -0.4em;
  /* optically flush right edge */
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 3rem;
  max-width: 50ch;
  text-align: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.25rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.meta-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.meta-value.mint-text {
  color: var(--mint);
}

.meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   EREDMÉNYEK (Stats Grid)
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1000px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: var(--light-grey);
  padding: 2rem 2rem;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

.stat-amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.04em;
}

.stat-amount .unit {
  font-size: 1.3rem;
  font-weight: 600;
  margin-left: 0.2rem;
  color: var(--mid-grey);
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.6;
}

/* ============================================================
   AKTUÁLIS CÉLJAINK
   ============================================================ */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.goal-card {
  background: linear-gradient(145deg, var(--purple-dark) 0%, #1e1030 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.goal-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.goal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.goal-card:hover .goal-image img {
  transform: scale(1.05);
}

.goal-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.goal-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}

.goal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.goal-desc {
  font-size: 1.05rem;
  color: #aaaaaa;
  line-height: 1.7;
}

/* ============================================================
   FELAJÁNLÁS ÚTMUTATÓ
   ============================================================ */
.methods-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.method-modern-card {
  background: var(--white);
  border: 1px solid #eaeaea;
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.method-modern-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border-color: #ddd;
}

.method-serial {
  font-size: 5rem;
  font-weight: 700;
  color: var(--light-grey);
  line-height: 0.8;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.method-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.method-desc {
  font-size: 1.1rem;
  color: var(--mid-grey);
  margin-bottom: 2rem;
  flex: 1;
}

.foundation-simple {
  margin-top: 2rem;
  padding: 2.5rem;
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  text-align: center;
}

.foundation-simple h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.foundation-simple p {
  color: var(--mid-grey);
  font-size: 1rem;
}

/* Method cards & foundation on dark background (felajanlas section) */
.section-dark .method-modern-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .method-modern-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.section-dark .method-serial {
  color: rgba(255, 255, 255, 0.12);
}

.section-dark .method-title {
  color: var(--white);
}

.section-dark .method-desc {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .foundation-simple {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .foundation-simple h3 {
  color: var(--white);
}

.section-dark .foundation-simple p {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   FEATURE SPLIT & DETAILS
   ============================================================ */
.feature-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .feature-split {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }

  .feature-split.reverse {
    flex-direction: row-reverse;
  }
}

.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-image-wrapper {
  flex: 1.1;
  width: 100%;
  position: sticky;
  top: 7rem; /* clears the fixed navbar */
}

/* Video/iframe frame – shared base */
.feature-image-wrapper iframe,
.feature-image-wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

/* Polished frame for iframes (YouTube embeds) */
.feature-image-wrapper iframe {
  border: none;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(255,255,255,0.08);
}

/* Light sections get a lighter shadow */
.section-light .feature-image-wrapper iframe {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08);
  outline: 1px solid rgba(0,0,0,0.07);
}

/* Maps (PNG with transparent bgs) need contrast in dark sections */
.section-dark .feature-image-wrapper img[src*="helyek"],
.section-dark .feature-image-wrapper img[src*="kozpontok"] {
  background: var(--white);
  padding: 1.5rem;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.feature-list {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.feature-tag {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.section-light .feature-tag {
  border-color: rgba(0, 0, 0, 0.15);
}

/* ============================================================
   AVATAR GRID (Kikkel találkozhattál)
   ============================================================ */
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.profile-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark-grey);
}

.profile-card img.person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-card:hover img.person-img {
  transform: scale(1.05);
}

.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--white);
  z-index: 2;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.profile-role {
  font-size: 0.9rem;
  color: var(--mint);
  font-weight: 500;
  opacity: 0.9;
}

.play-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-button img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  display: block;
  /* Play SVG is visually right-heavy — 1px left nudge optically centers it */
  margin: 0 0 0 2px;
}

.profile-card:hover .play-button {
  background: var(--mint);
  transform: scale(1.1);
}

.profile-card:hover .play-button img {
  filter: brightness(0);
}

/* ============================================================
   STATISTICS (Számokban)
   ============================================================ */
.stats-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
  margin-top: 4rem;
}

.stat-num-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.stat-num-box img {
  width: 56px;
  height: 56px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.stat-number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--mint);
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Stats grid on light background (számokban section) */
.section-light .stat-num-box img {
  filter: brightness(0) saturate(100%);
  opacity: 0.6;
}

.section-light .stat-number {
  color: var(--purple);
}

.section-light .stat-label {
  color: var(--mid-grey);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer-modern {
  background: var(--light-grey);
  color: var(--black);
  padding: 5rem 6vw 2rem;
  border-top: 1px solid #e0e0e0;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.footer-info {
  flex: 1 1 auto;
}

.footer-contact {
  flex: 0 0 auto;
  text-align: right;
}

.footer-info p {
  color: #aaa;
}

.tax-highlight {
  font-size: 1rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tax-highlight span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  display: block;
  font-size: 1.05rem;
  color: var(--mid-grey);
  margin-bottom: 0.8rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid #d0d0d0;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--mid-grey);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .goals-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 5rem 2vw;
  }
}

@media (max-width: 600px) {
  .stats-number-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}