/* =========================================================
   Bobkas Media — Stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg-cream: #f6f1e8;
  --bg-cream-alt: #efe8db;
  --bg-white: #fdfbf7;
  --navy: #0f2347;
  --navy-soft: #1a2f55;
  --orange: #c9722e;
  --orange-dark: #b05f1f;
  --orange-light: #e8b477;
  --emerald: #0e8a6d;
  --sky: #2f80c4;
  --plum: #8a4f9e;
  --green: #2e9e5b;
  --text: #1e2c4e;
  --text-muted: #525f7d;
  --border: #e2d9c8;

  --font-serif: "Sora", "Segoe UI", Arial, sans-serif;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;

  --radius: 10px;
  --container: 1180px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Stroke-based icons */
.icon,
.card-icon svg,
.partner-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  border: 1.5px solid var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* ---------- Section helpers ---------- */
.section {
  padding: 80px 0;
}

.eyebrow {
  text-align: center;
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-align: center;
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.4;
}

.section-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto 56px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.logo-img {
  height: 62px;
  width: auto;
  /* JPG has a light background — multiply blends it into the cream navbar */
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--orange);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 0;
  padding-block: 56px 64px;
  max-width: 1440px;
  padding-inline: 48px;
}

/* Pull the artwork slightly into the text column to close the visual gap */
.hero-art {
  margin-left: -48px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: var(--navy);
}

.hero-title .accent {
  color: var(--orange);
  font-style: italic;
}

.hero-text {
  max-width: 420px;
  margin: 26px 0 34px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-art img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  /* Drop the white backdrop so the artwork blends into the cream hero */
  mix-blend-mode: multiply;
  /* Fade the artwork edges so it blends into the hero background */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 22%),
    linear-gradient(to left, transparent 0%, black 15%),
    linear-gradient(to top, transparent 0%, black 30%),
    linear-gradient(to bottom, transparent 0%, black 12%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 22%),
    linear-gradient(to left, transparent 0%, black 15%),
    linear-gradient(to top, transparent 0%, black 30%),
    linear-gradient(to bottom, transparent 0%, black 12%);
  mask-composite: intersect;
}

/* Second artwork card — mobile only */
.hero-media-mobile {
  display: none;
}

/* ---------- Value strip ---------- */
.value-strip {
  background: var(--bg-white);
  border-block: 1px solid var(--border);
  padding: 42px 0;
}

/* Full-bleed strip: only page-level side padding */
.value-strip .container {
  max-width: none;
}

.value-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.value-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.value-item .icon {
  width: 38px;
  height: 38px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Multi-accent cycle (5 steps so the mobile marquee clones stay in sync) */
.value-item:nth-child(5n+1) .icon { color: var(--emerald); }
.value-item:nth-child(5n+2) .icon { color: var(--plum); }
.value-item:nth-child(5n+3) .icon { color: var(--sky); }
.value-item:nth-child(5n+4) .icon { color: var(--green); }
.value-item:nth-child(5n+5) .icon { color: var(--orange); }

/* ---------- Who We Are / cards ---------- */
.who-we-are {
  background: var(--bg-white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(28, 35, 51, 0.08);
}

.card-icon {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: #f3e2c8;
  color: var(--orange-dark);
  display: grid;
  place-items: center;
  margin: 0 auto 40px;
}

.card-icon svg {
  width: 36px;
  height: 36px;
}

/* Pastel accent chip per card */
.card:nth-child(1) .card-icon { background: #dff1ea; color: var(--emerald); }
.card:nth-child(2) .card-icon { background: #fbe6cf; color: var(--orange-dark); }
.card:nth-child(3) .card-icon { background: #e1eefa; color: var(--sky); }
.card:nth-child(4) .card-icon { background: #f4e3f4; color: var(--plum); }

.card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}

.card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 26px;
}

.card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link .arrow {
  transition: transform var(--transition);
}

.card-link:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Where We Operate ---------- */
.operate {
  background: var(--bg-white);
  border-block: 1px solid var(--border);
}


.operate-grid {
  display: grid;
  grid-template-columns: 3fr auto 2.4fr;
  gap: 48px;
  align-items: start;
}

.operate-divider {
  width: 1px;
  height: 100%;
  background: var(--border);
}

.operate-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange-light);
  margin-bottom: 30px;
}

/* Distinct accent underline per column */
.operate-col:first-child .operate-title { border-bottom-color: var(--emerald); }
.operate-col:last-child .operate-title { border-bottom-color: var(--plum); }

.operate-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 36px;
}

/* Spread items evenly across the full width of the column */
.operate-items-wide {
  justify-content: space-between;
  width: 100%;
  gap: 30px 12px;
}

.operate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  min-width: 64px;
  line-height: 1.35;
}

.operate-item .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

/* Accent cycles (divide the item count so mobile marquee clones stay in sync) */
.operate-items:not(.operate-items-wide) .operate-item:nth-child(3n+1) .icon { color: var(--emerald); }
.operate-items:not(.operate-items-wide) .operate-item:nth-child(3n+2) .icon { color: var(--sky); }
.operate-items:not(.operate-items-wide) .operate-item:nth-child(3n+3) .icon { color: var(--plum); }

.operate-items-wide .operate-item:nth-child(4n+1) .icon { color: var(--emerald); }
.operate-items-wide .operate-item:nth-child(4n+2) .icon { color: var(--plum); }
.operate-items-wide .operate-item:nth-child(4n+3) .icon { color: var(--sky); }
.operate-items-wide .operate-item:nth-child(4n+4) .icon { color: var(--orange); }

/* ---------- Media Partners ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.partner-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(28, 35, 51, 0.12);
}

.partner-light {
  background: var(--bg-cream-alt);
  border: 1px solid var(--border);
}

.partner-dark {
  background: var(--navy);
  color: #e9e4da;
}

.partner-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bg-white);
  color: var(--orange-dark);
}

.partner-light .partner-icon {
  background: #dff1ea;
  color: var(--emerald);
}

.partner-dark .partner-icon {
  background: var(--navy-soft);
  color: #9cc7ee;
}

.partner-icon svg {
  width: 28px;
  height: 28px;
}

.partner-body h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.partner-dark .partner-body h3 {
  color: #fff;
}

.partner-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 340px;
}

.partner-dark .partner-body p {
  color: #b9bdc9;
}

.accent-link {
  color: var(--orange-light);
}

/* ---------- Why Bobkas ---------- */
.why {
  padding-top: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.why-item .icon {
  width: 36px;
  height: 36px;
  color: var(--orange);
}

.why-item:nth-child(1) .icon { color: var(--green); }
.why-item:nth-child(2) .icon { color: var(--orange); }
.why-item:nth-child(3) .icon { color: var(--sky); }
.why-item:nth-child(4) .icon { color: var(--emerald); }
.why-item:nth-child(5) .icon { color: var(--plum); }

.why-item p {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 200px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(100deg, var(--orange-dark) 0%, var(--orange) 45%, #e08a3c 100%);
  color: #fff;
  padding: 46px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-top: 6px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--orange-dark);
}

.cta-banner .btn-primary:hover {
  background: #fdf3e7;
  color: var(--orange-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #14192a;
  color: #a7abb8;
  padding-top: 56px;
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 44px;
}

.logo-light {
  color: #fff;
}

/* JPG has a white background — show it as a clean chip on the dark footer */
.footer-logo-img {
  width: 170px;
  height: auto;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 230px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  color: #a7abb8;
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--orange-light);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-social svg[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-col a {
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: var(--orange-light);
}

/* ---------- Contact modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 25, 42, 0.55);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 40px 36px;
  transform: translateY(16px) scale(0.97);
  transition: transform var(--transition);
}

.modal-overlay.open .modal {
  transform: none;
}

.modal h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--orange);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-error {
  color: #b3261e;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.modal form .btn {
  width: 100%;
  cursor: pointer;
  border: 0;
}

.form-success {
  text-align: center;
  font-size: 0.92rem;
  color: var(--navy);
  background: #f3e2c8;
  border-radius: 8px;
  padding: 20px;
}

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

/* Cloned items exist only to complete the marquee loop on mobile */
.marquee-clone {
  display: none;
}

@media (max-width: 768px) {
  .value-strip {
    overflow: hidden;
    padding-block: 24px;
  }

  .value-strip .container {
    padding-inline: 0;
  }

  .value-strip-inner {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0;
    row-gap: 0;
    animation: marquee-slide 26s linear infinite;
  }

  .value-strip-inner .value-item {
    display: flex;
    flex-shrink: 0;
    min-width: 215px;
    margin-right: 40px;
  }

  .operate-col {
    overflow: hidden;
  }

  .operate-items,
  .operate-items-wide {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    gap: 0;
    animation: marquee-slide 22s linear infinite;
  }

  .operate-items .operate-item,
  .operate-items-wide .operate-item {
    flex-shrink: 0;
    min-width: 84px;
    margin-right: 44px;
  }

  .marquee-clone {
    display: flex;
  }

  .value-strip-inner:hover,
  .operate-items:hover {
    animation-play-state: paused;
  }

  /* Center the last Why Bobkas item on the 2-column mobile grid */
  .why-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .value-strip-inner,
  .operate-items,
  .operate-items-wide {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

  .marquee-clone {
    display: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-strip-inner,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }

  .value-item:not(:last-child) {
    border-right: 0;
  }

  .operate-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .operate-divider {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    display: none;
  }

  .main-nav.open {
    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);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 72px 48px;
    padding-inline: 20px;
    position: relative;
  }

  /* Blend the hero artwork behind the hero text on mobile */
  .hero-content {
    position: relative;
    z-index: 1;
  }

  /* Artwork = corner accent flowing in from the top-right, like the mockup */
  .hero-art {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 62%;
    height: 24%;
    margin: 0;
    opacity: 1;
    pointer-events: none;
  }

  .hero-art img {
    height: 100%;
    object-position: right bottom;
    /* Flip vertically so the dense wave mass hugs the top edge, like the mockup */
    transform: scaleY(-1);
    /* Diagonal fade toward the bottom-left so it dissolves into the background
       (mask directions are inverted because of the flip) */
    -webkit-mask-image:
      linear-gradient(325deg, black 30%, transparent 78%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(325deg, black 30%, transparent 78%);
    mask-composite: intersect;
  }

  /* Stacked, left-aligned CTA buttons */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    min-width: 210px;
    text-align: center;
  }

  /* Second artwork blending in right under the buttons — no container/border */
  .hero-media-mobile {
    display: block;
    /* Large negative pull: the PNG has empty space baked into its top edge */
    margin-top: -54px;
  }

  .hero-media-mobile img {
    width: 100%;
    /* Multiply drops any light backdrop so it fuses with the page background */
    mix-blend-mode: multiply;
  }

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

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

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

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

  /* 2×2 grid on small screens */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .partner-card {
    flex-direction: column;
  }

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