:root {
  --ink: #162233;
  --muted: #607083;
  --line: rgba(22, 34, 51, 0.12);
  --paper: #fffdf8;
  --soft: #f1f8ff;
  --red: #d71920;
  --deep-red: #9f1117;
  --rose: #fff0f1;
  --blue: #0077c8;
  --cyan: #35c6e8;
  --green: #30bf7a;
  --orange: #ff9d3d;
  --pink: #ff4f8b;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(22, 34, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(215, 25, 32, 0.24), transparent 28rem),
    radial-gradient(circle at 95% 5%, rgba(255, 157, 61, 0.22), transparent 24rem),
    radial-gradient(circle at 50% 48%, rgba(53, 198, 232, 0.08), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(22, 34, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.price-tabs,
.card-actions {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-red), var(--red));
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.24);
  min-width: max-content;
  font-weight: 800;
}

.brand-logo {
  width: 176px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(22, 34, 51, 0.2));
}

.main-nav {
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav .nav-cta {
  background: var(--red);
  color: white;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.section-pad {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 90px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Montserrat, Manrope, system-ui, sans-serif;
  font-weight: 900;
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 58px);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 680px;
  font-size: 19px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--deep-red), var(--red));
  color: white;
  box-shadow: 0 18px 32px rgba(215, 25, 32, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
}

.button.dark {
  border-color: transparent;
  background: var(--ink);
  color: white;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0;
}

.trust-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 240, 241, 0.76));
  box-shadow: 0 14px 35px rgba(159, 17, 23, 0.08);
}

.trust-strip dt {
  color: var(--ink);
  font-size: 31px;
  font-weight: 800;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: none;
}

.color-splash {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.4px);
  opacity: 0.9;
}

.splash-one {
  right: 40px;
  bottom: 54px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 157, 61, 0.86), rgba(255, 157, 61, 0));
}

.splash-two {
  left: 28px;
  top: 190px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.62), rgba(215, 25, 32, 0));
}

.splash-three {
  right: 92px;
  top: 118px;
  width: 86px;
  height: 86px;
  background: radial-gradient(circle, rgba(48, 191, 122, 0.48), rgba(48, 191, 122, 0));
}

.hero-illustration {
  position: absolute;
  inset: 18px;
  z-index: 1;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  border-radius: 34px;
  filter: drop-shadow(0 24px 34px rgba(22, 34, 51, 0.18));
}

.washer {
  position: absolute;
  inset: 62px 52px;
  border: 12px solid rgba(255, 255, 255, 0.9);
  border-radius: 42px;
  background: linear-gradient(180deg, #edf6ff, #d9ebf7);
  box-shadow: inset 0 -20px 40px rgba(22, 34, 51, 0.09);
}

.washer::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 26px;
  width: 78px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--deep-red), var(--red));
}

.washer-door {
  position: absolute;
  inset: 118px 38px 44px;
  display: grid;
  place-items: center;
  border: 16px solid #f9fbff;
  border-radius: 50%;
  background: #ffdadd;
  box-shadow: inset 0 16px 45px rgba(215, 25, 32, 0.22);
}

.washer-door span {
  display: block;
  width: 82%;
  height: 82%;
  border-radius: 45% 55% 48% 52%;
  background: conic-gradient(from 20deg, var(--red), var(--orange), var(--pink), var(--deep-red), var(--red));
  animation: slow-spin 14s linear infinite;
  opacity: 0.92;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset -7px -9px 15px rgba(215, 25, 32, 0.16);
}

.b1 { width: 72px; height: 72px; left: -26px; top: 100px; }
.b2 { width: 38px; height: 38px; right: 34px; top: 122px; }
.b3 { width: 52px; height: 52px; right: -20px; bottom: 96px; }
.b4 { width: 28px; height: 28px; left: 64px; bottom: 70px; }

.floating-note {
  position: absolute;
  max-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 45px rgba(22, 34, 51, 0.12);
  color: var(--ink);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.note-one { left: 24px; bottom: 54px; }
.note-two { right: 20px; top: 72px; }

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.visual-band {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.05fr;
  gap: 18px;
  margin-bottom: 18px;
}

.visual-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
}

.visual-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.visual-card span {
  display: inline-flex;
  margin-bottom: 50px;
  font-weight: 800;
  opacity: 0.72;
}

.visual-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.visual-card p {
  margin-bottom: 0;
}

.red-card {
  background: linear-gradient(145deg, var(--deep-red), var(--red));
  color: white;
}

.red-card p,
.dark-card p {
  color: rgba(255, 255, 255, 0.78);
}

.white-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.dark-card {
  background: var(--ink);
  color: white;
}

.brand-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(22, 34, 51, 0.06);
}

.brand-ribbon span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose), white);
  color: var(--deep-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-grid,
.branch-grid,
.price-table-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.branch-card,
.price-panel,
.home-service,
.cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(22, 34, 51, 0.06);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 35px;
  transform: rotate(18deg);
  background: rgba(215, 25, 32, 0.11);
}

.service-card.tintoreria { background: linear-gradient(150deg, rgba(215, 25, 32, 0.14), rgba(255, 255, 255, 0.82)); }
.service-card.lavanderia { background: linear-gradient(150deg, rgba(255, 79, 139, 0.12), rgba(255, 255, 255, 0.82)); }
.service-card.planchaduria { background: linear-gradient(150deg, rgba(255, 157, 61, 0.18), rgba(255, 255, 255, 0.82)); }
.service-card.sastreria { background: linear-gradient(150deg, rgba(53, 198, 232, 0.14), rgba(255, 255, 255, 0.82)); }

.service-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 230px;
  margin-bottom: 22px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(22, 34, 51, 0.1);
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.home-service,
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 52px;
}

.home-service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 34, 51, 0.9), rgba(159, 17, 23, 0.82)),
    radial-gradient(circle at 90% 20%, rgba(255, 79, 139, 0.42), transparent 15rem);
  color: white;
}

.home-service::before {
  content: "Domicilio";
  position: absolute;
  left: 42px;
  bottom: -22px;
  color: rgba(255, 255, 255, 0.07);
  font-family: Montserrat, Manrope, system-ui, sans-serif;
  font-size: clamp(70px, 12vw, 150px);
  letter-spacing: -0.08em;
}

.home-service-copy,
.delivery-visual,
.home-button {
  position: relative;
  z-index: 1;
}

.delivery-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.home-button {
  align-self: start;
  justify-self: start;
}

.home-service p,
.home-service .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.home-service h2 {
  max-width: 760px;
  color: white;
}

.domicilio-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.domicilio-steps span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.delivery-visual {
  min-height: 220px;
}

.delivery-visual img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.van {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 310px;
  height: 142px;
  border-radius: 36px 48px 28px 28px;
  background: linear-gradient(135deg, #ffffff, #ffe8ea);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

.van::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 26px;
  width: 78px;
  height: 46px;
  border-radius: 14px 24px 14px 14px;
  background: linear-gradient(135deg, #9ee7ff, #fff);
}

.van::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 0;
  width: 42px;
  height: 78px;
  border-radius: 0 24px 18px 0;
  background: var(--red);
}

.van img {
  position: absolute;
  left: 24px;
  top: 35px;
  width: 150px;
}

.wheel {
  position: absolute;
  bottom: -18px;
  width: 48px;
  height: 48px;
  border: 9px solid var(--ink);
  border-radius: 50%;
  background: white;
}

.wheel-one { left: 52px; }
.wheel-two { right: 54px; }

.route-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.dot-one { top: 28px; right: 24px; width: 20px; height: 20px; }
.dot-two { top: 82px; right: 330px; width: 14px; height: 14px; }
.dot-three { bottom: 34px; right: 380px; width: 24px; height: 24px; }

.promo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.promo-strip article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 241, 0.82)),
    radial-gradient(circle at 88% 10%, rgba(215, 25, 32, 0.2), transparent 8rem);
  box-shadow: 0 18px 45px rgba(22, 34, 51, 0.06);
}

.promo-strip strong {
  display: block;
  margin-bottom: 70px;
  color: var(--deep-red);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.price-tabs {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.price-tab {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  padding: 12px 16px;
  font: inherit;
  font-weight: 800;
}

.price-tab.active {
  border-color: transparent;
  background: var(--red);
  color: white;
}

.price-panel {
  min-height: 360px;
  padding: 26px;
}

.price-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.price-panel-header p {
  margin-bottom: 0;
}

.branch-meta {
  color: var(--ink);
  font-weight: 900;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.price-table-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.price-table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.price-table-card h3 {
  margin: 0;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--deep-red), var(--red));
  color: white;
  font-size: 18px;
}

.price-rows {
  padding: 10px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 11px 10px;
  border-bottom: 1px solid rgba(22, 34, 51, 0.08);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.price-row strong {
  color: var(--deep-red);
  font-size: 15px;
  white-space: nowrap;
}

.branch-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.branch-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
}

.branch-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(22, 34, 51, 0.1);
}

.branch-card::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -38px;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  transform: rotate(18deg);
  background: rgba(215, 25, 32, 0.1);
}

.branch-card.highlight {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(215, 25, 32, 0.12), rgba(255, 240, 241, 0.86));
}

.branch-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.branch-card a {
  display: inline-flex;
  width: max-content;
  color: var(--red);
  font-weight: 800;
}

.branch-card h3,
.branch-card p,
.branch-card a,
.branch-card img,
.branch-actions {
  position: relative;
  z-index: 1;
}

.branch-card p {
  min-height: 84px;
  margin-bottom: 8px;
}

.cta {
  background: linear-gradient(135deg, #fff8f8, var(--rose));
}

.qr-note {
  margin: 18px auto 0;
  text-align: center;
}

code {
  padding: 2px 6px;
  border-radius: 8px;
  background: var(--rose);
  color: var(--deep-red);
  font-weight: 800;
}

.price-page {
  min-height: 100vh;
  padding-top: 90px;
}

.closed-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.closed-notice {
  width: min(820px, 100%);
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 241, 0.86)),
    radial-gradient(circle at 90% 10%, rgba(215, 25, 32, 0.2), transparent 18rem);
  box-shadow: var(--shadow);
  text-align: center;
}

.closed-logo {
  width: min(340px, 80vw);
  margin: 0 auto 32px;
}

.closed-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.price-page-header {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 24px;
  text-align: center;
}

.price-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-red), var(--red));
  box-shadow: 0 16px 34px rgba(215, 25, 32, 0.24);
}

.price-page-header .brand-logo {
  width: min(320px, 78vw);
  margin: 0 auto;
}

.price-page-header h1 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 4px 0;
  font-size: 14px;
}

.loading,
.error {
  text-align: center;
}

.error {
  color: #b00020;
  font-weight: 800;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 920px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
  }

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

  .hero,
  .visual-band,
  .service-grid,
  .price-table-grid,
  .brand-ribbon,
  .promo-strip,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-card {
    min-height: 460px;
  }

  .home-service,
  .cta,
  .price-panel-header {
    align-items: stretch;
    flex-direction: column;
  }

  .home-service {
    grid-template-columns: 1fr;
  }

  .delivery-visual {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .branch-card.highlight {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .section-pad {
    width: min(100% - 22px, 1160px);
    padding: 64px 0;
  }

  .site-header {
    width: min(100% - 22px, 1160px);
    margin-top: 10px;
  }

  .brand-logo {
    width: 138px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 380px;
    border-radius: 34px;
  }

  .washer {
    inset: 42px 26px;
  }

  .washer-door {
    inset: 105px 26px 34px;
  }

  .hero-illustration {
    inset: 34px 20px auto;
    width: calc(100% - 40px);
    height: 300px;
  }

  .floating-note {
    display: none;
  }

  .home-service,
  .cta,
  .price-panel,
  .service-card,
  .branch-card {
    padding: 24px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
