@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Rich, Solid NGO Theme Colors */
  --primary-color: #0A2647;
  /* Deep Navy */
  --primary-light: #144272;
  --secondary-color: #E45826;
  /* Warm Orange */
  --secondary-hover: #c4471b;
  --accent-teal: #008080;
  --accent-gold: #F1C40F;
  --bg-color: #F8F9FA;
  --surface-color: #ffffff;

  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-light: #ffffff;

  --border-color: #dee2e6;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);

  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --info: #3b82f6;
  --danger: #ef4444;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.nav-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Solid Surface Container */
.glass {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  /* More solid blocky feel */
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
}

.btn:hover {
  background: #f1f5f9;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Navigation - Shorter Height */
.navbar {
  padding: 0.5rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-color);
  border-bottom: 4px solid var(--secondary-color);
}

.nav-brand {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0;
}

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

.nav-links .btn {
  color: var(--text-light);
  padding: 0.4rem 1rem;
}

.nav-links .btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.nav-links .btn-primary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.nav-links .btn-primary:hover {
  background: var(--secondary-hover);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  /* No gap */
  left: 0;
  background: var(--primary-color);
  border: 1px solid var(--primary-light);
  border-top: none;
  min-width: 220px;
  z-index: 1000;
  list-style: none;
  box-shadow: var(--shadow-md);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--primary-light);
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background: var(--secondary-color);
  color: var(--text-light);
}

/* Hero Banner - Solid Overlay */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 45vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 38, 71, 0.75);
  /* Solid overlay, no gradient */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: #f8f9fa;
  font-size: 1.25rem;
  font-weight: 400;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4rem 0;
}

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

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

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

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 3rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Masonry Gallery */
.masonry-grid {
  columns: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .masonry-grid {
    columns: 3;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

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

.masonry-item:hover img {
  transform: scale(1.03);
}

/* Footer */
.ngo-footer {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0 0;
  margin-top: 5rem;
  border-top: 6px solid var(--accent-teal);
}

.ngo-footer h4 {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.ngo-footer p {
  color: #ced4da;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ced4da;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1rem;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  color: white;
  background: var(--primary-light);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.social-icons a:hover {
  background: var(--secondary-color);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid var(--primary-light);
  text-align: center;
  color: #adb5bd;
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
}

/* Lightbox Modal */
.qr-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 38, 71, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.qr-modal.active {
  display: flex;
}

.qr-modal-content {
  background: transparent;
  padding: 2rem;
  text-align: center;
  max-width: 90%;
}

.qr-modal-close {
  margin-top: 1.5rem;
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: background-color 0.2s;
}

.qr-modal-close:hover {
  background: var(--secondary-color);
  color: white;
}

/* ============================================================
   HOMEPAGE-SPECIFIC STYLES
   ============================================================ */

/* Full-width Hero */
.home-hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  color: white;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 38, 71, 0.72);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 6%;
  max-width: 860px;
}

.home-hero-inner h1 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.home-hero-inner h1 span {
  color: var(--accent-gold);
}

.home-hero-inner p {
  color: #e2e8f0;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.home-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-ghost {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

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

/* Stats Strip */
.stats-strip {
  background: var(--secondary-color);
  color: white;
  padding: 2.5rem 0;
}

.stats-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.stat-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.stat-item span {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Section Header */
.section-header {
  margin-bottom: 3rem;
}

.section-header .overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 0;
}

.section-header p {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* Feature Cards */
.feature-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-teal);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card .card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-color);
  color: var(--accent-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* Impact split section */
.impact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media(min-width: 768px) {
  .impact-split {
    grid-template-columns: 1fr 1fr;
  }
}

.impact-split-img {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.impact-split-text {
  background: var(--primary-color);
  color: white;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-split-text h2 {
  color: var(--accent-gold);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.impact-split-text p {
  color: #ced4da;
  margin-bottom: 1.25rem;
}

.impact-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #e2e8f0;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.impact-list li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--accent-gold);
  margin-top: 6px;
}

/* Teal CTA Banner */
.cta-banner {
  background: var(--accent-teal);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.8rem 2.5rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-size: 1rem;
  transition: filter 0.2s ease;
}

.btn-gold:hover {
  filter: brightness(0.9);
  color: var(--primary-color);
}

/* Events Cards */
.event-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--secondary-color);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.event-date-box {
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.event-date-box .day {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.event-date-box .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  color: var(--accent-gold);
}

.event-card h4 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.event-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-strip-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-strip-item:hover img {
  transform: scale(1.06);
}

/* Team card */
.team-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-card-body {
  padding: 1.25rem;
  border-top: 4px solid var(--accent-teal);
}

.team-card-body h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.team-card-body span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--secondary-color);
}

/* ============================================================
   RESPONSIVE / MOBILE-FIRST
   ============================================================ */

/* ---- Hamburger button ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Footer grid ---- */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---- Student portal ---- */
.student-body {
  background: var(--bg-color);
}

.student-main {
  padding: 2rem 0 4rem;
  min-height: calc(100vh - 120px);
}

.student-footer {
  background: var(--primary-color);
  color: #ced4da;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.9rem;
}

.student-footer p {
  margin: 0;
  color: #ced4da;
}

/* ---- MOBILE BREAKPOINT (< 900px) ---- */
@media (max-width: 899px) {

  /* Hamburger visible */
  .nav-hamburger {
    display: flex;
  }

  /* Full-height slide-down nav panel */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
    border-top: 2px solid var(--secondary-color);
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

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

  /* All nav buttons full-width */
  .nav-links .btn,
  .nav-links .btn-primary {
    width: 100%;
    text-align: left;
    padding: 0.85rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--primary-light);
    margin-left: 0 !important;
  }

  /* Dropdown: show inline on mobile */
  .nav-links .dropdown {
    width: 100%;
  }

  .nav-links .dropdown-toggle {
    width: 100%;
  }

  .nav-links .dropdown-menu {
    position: static;
    display: none;
    background: var(--primary-light);
    border: none;
    box-shadow: none;
    min-width: 100%;
  }

  .nav-links .dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  .nav-links .dropdown-item {
    padding-left: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* navbar must be relative so the panel drops below */
  .navbar {
    position: relative;
  }

  /* Container padding */
  .container {
    padding: 0 1rem;
  }

  /* Hero */
  .home-hero {
    min-height: 70vh;
  }

  .home-hero-inner {
    padding: 2.5rem 5%;
  }

  .home-hero-inner h1 {
    font-size: clamp(1.9rem, 6vw, 3rem);
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero-actions .btn,
  .home-hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }

  /* Stats strip */
  .stats-strip .container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  /* Impact split: stack */
  .impact-split {
    grid-template-columns: 1fr;
  }

  .impact-split-img {
    min-height: 260px;
  }

  .impact-split-text {
    padding: 2.5rem 1.5rem;
  }

  /* Gallery strip: 2 col on mobile */
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Event cards: stack date + info */
  .event-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .event-date-box {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 1rem;
    width: auto;
    align-self: flex-start;
  }

  .event-date-box .day {
    font-size: 1.3rem;
  }

  .event-date-box .month {
    font-size: 0.7rem;
  }

  /* CTA banner */
  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  /* Hero-banner on interior pages */
  .hero-banner {
    min-height: 30vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* Forms: remove fixed max-width constraint on mobile */
  .glass[style*="max-width"] {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    max-width: none !important;
    padding: 1.75rem 1.25rem !important;
  }

  /* Student portal */
  .student-main {
    padding: 1.5rem 0 3rem;
  }

  .dashboard-header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* ---- Very small phones (< 480px) ---- */
@media (max-width: 479px) {
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 80vh;
  }

  .stat-item strong {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .ngo-footer {
    padding: 3rem 0 0;
  }

  .team-card img {
    aspect-ratio: 4/3;
  }
}

/* ---- Tablet (640–899px): 2-col grids ---- */
@media (min-width: 640px) and (max-width: 899px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .home-hero {
    min-height: 80vh;
  }
}

/* ---- Desktop (>= 900px) ---- */
@media (min-width: 900px) {
  .nav-hamburger {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    position: static;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  /* Restore standard grid column rules at desktop */
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}