/* ============================================================
   HOME — estilos específicos
   ============================================================ */

/* ----------------------- HERO ----------------------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--bone);
  padding: 56px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(244,241,236,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244,241,236,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 75%);
}
.hero-inner { position: relative; }

.hero-meta-top {
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: rgba(244,241,236,0.5);
  letter-spacing: 0.18em; text-transform: uppercase;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 64px;
}

.hero-main {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 88px;
}

.hero-text { padding-top: 8px; }
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,184,66,0.18);
}
.hero h1 {
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 36px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-lede {
  max-width: 50ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(244,241,236,0.78);
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ----------------------- Hero Explorer (interactive) ----------------------- */
.hero-explorer {
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(244,241,236,0.03), rgba(244,241,236,0));
  position: relative;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-explorer::before {
  content: ""; position: absolute;
  top: -1px; left: -1px; width: 28px; height: 28px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.hero-explorer::after {
  content: ""; position: absolute;
  bottom: -1px; right: -1px; width: 28px; height: 28px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.hex-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; letter-spacing: 0.18em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(244,241,236,0.55);
}
.hex-counter { color: var(--gold); }
.hex-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line-dark);
}
.hex-tab {
  appearance: none; -webkit-appearance: none;
  background: transparent; color: rgba(244,241,236,0.6);
  border: 0; border-right: 1px solid var(--line-dark);
  padding: 14px 8px 12px;
  font-family: var(--mono); font-size: 11px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
}
.hex-tab:last-child { border-right: 0; }
.hex-tab .hex-tab-name {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
}
.hex-tab:hover { color: var(--bone); background: rgba(244,241,236,0.04); }
.hex-tab.active {
  background: rgba(232,184,66,0.08);
  color: var(--gold);
}
.hex-tab.active::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: var(--gold);
}
.hex-panels { position: relative; min-height: 184px; }
.hex-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.hex-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hex-panel h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--bone);
}
.hex-panel p {
  font-size: 13.5px; line-height: 1.5;
  color: rgba(244,241,236,0.72);
  max-width: 44ch;
}
.hex-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 12px;
  margin-top: auto;
}
.hex-meta > div { padding-right: 10px; }
.hex-meta dt {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,241,236,0.5);
  margin-bottom: 4px;
}
.hex-meta dd { font-size: 11.5px; color: var(--bone); line-height: 1.35; }
.hex-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px; letter-spacing: 0.16em;
}
.hex-go { color: var(--gold); text-decoration: none; }
.hex-go .arrow { display: inline-block; transition: transform 0.2s ease; }
.hex-go:hover .arrow { transform: translateX(4px); }
.hex-status { color: var(--status); font-size: 10px; }

/* Hero spec card (legacy, hidden) */
.hero-spec {
  display: none;
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(244,241,236,0.025), rgba(244,241,236,0));
  padding: 24px 24px 18px;
  position: relative;
}
.hero-spec::before {
  content: ""; position: absolute;
  top: -1px; left: -1px; width: 28px; height: 28px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.hero-spec::after {
  content: ""; position: absolute;
  bottom: -1px; right: -1px; width: 28px; height: 28px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.spec-head {
  display: flex; justify-content: space-between;
  font-size: 10px;
  color: rgba(244,241,236,0.6);
  letter-spacing: 0.18em; text-transform: uppercase;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 18px;
}
.spec-status { color: var(--status); }
.spec-list { display: flex; flex-direction: column; gap: 0; }
.spec-list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(244,241,236,0.12);
  font-size: 13px;
  align-items: baseline;
}
.spec-list > div:last-child { border-bottom: 0; }
.spec-list dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
}
.spec-list dd {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.spec-foot {
  margin-top: 14px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(244,241,236,0.35);
  text-align: right;
}

/* Hero feature image */
.hero-feature {
  position: relative;
  margin: 0 calc(var(--pad) * -1) 0;
  height: clamp(280px, 36vw, 460px);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}
.hero-feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.hero-feature::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.55) 0%, rgba(10,37,64,0.15) 40%, rgba(10,37,64,0.7) 100%);
  pointer-events: none;
}
.hero-feature figcaption {
  position: absolute; left: var(--pad); bottom: 24px;
  display: flex; gap: 14px; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,241,236,0.85);
  z-index: 2;
}
.hero-feature figcaption .mono {
  background: var(--gold); color: var(--navy);
  padding: 4px 8px; letter-spacing: 0.12em;
}

/* Marquee */
.hero-marquee {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin: 0 calc(var(--pad) * -1);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.55);
}
.marquee-track span:nth-child(odd):not(:nth-child(2n)) { color: var(--gold); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero-main { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(40px, 9vw, 64px); }
}

/* ----------------------- ESENCIA ----------------------- */
.essence-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.essence-fig {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.essence-fig img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9);
}
.essence-fig::before {
  content: ""; position: absolute; top: 12px; left: 12px;
  width: 36px; height: 36px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 2;
}
.essence-fig::after {
  content: ""; position: absolute; bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  z-index: 2;
}
.essence-fig-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--bone); color: var(--navy);
  padding: 6px 10px;
  font-size: 10px; letter-spacing: 0.18em;
  z-index: 3;
}
.essence-content h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 12px 0 28px;
}
.essence-content .hl {
  color: var(--navy); display: inline-block;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
}
.big-p {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 22px;
  max-width: 56ch;
}
.big-p strong { color: var(--navy); font-weight: 600; }
.big-p.light { color: rgba(244,241,236,0.82); }
.big-p.light strong { color: var(--gold); }
.essence-right .btn { margin-top: 12px; }
@media (max-width: 860px) {
  .essence-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ----------------------- FICHA STRIP ----------------------- */
.ficha-strip {
  background: var(--bone-2, #efebe3);
  border-top: 1px solid rgba(11,15,23,0.08);
  border-bottom: 1px solid rgba(11,15,23,0.08);
  padding: 22px 0;
}
.ficha-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(11,15,23,0.55);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(11,15,23,0.08);
}
.ficha-status { color: #1d6e3f; }
.ficha-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding-top: 14px;
}
.ficha-list > div {
  padding: 0 18px;
  border-right: 1px solid rgba(11,15,23,0.08);
}
.ficha-list > div:first-child { padding-left: 0; }
.ficha-list > div:last-child { border-right: 0; padding-right: 0; }
.ficha-list dt {
  font-family: var(--mono);
  font-size: 9.5px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11,15,23,0.55);
  margin-bottom: 6px;
}
.ficha-list dd {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (max-width: 980px) {
  .ficha-list { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .ficha-list > div { border-bottom: 1px solid rgba(11,15,23,0.08); padding-bottom: 14px; }
  .ficha-list > div:nth-child(3n) { border-right: 0; }
  .ficha-list > div:nth-last-child(-n+3) { border-bottom: 0; padding-bottom: 0; }
}
@media (max-width: 540px) {
  .ficha-list { grid-template-columns: repeat(2, 1fr); }
  .ficha-list > div:nth-child(3n) { border-right: 1px solid rgba(11,15,23,0.08); }
  .ficha-list > div:nth-child(2n) { border-right: 0; }
}

/* ----------------------- SERVICES / LINES ----------------------- */
.lines { list-style: none; border-top: 1px solid var(--line-dark); }
.line {
  display: grid;
  grid-template-columns: 60px 140px 1fr 140px;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
  transition: background 0.3s;
  position: relative;
}
.line { position: relative; }
.line-preview {
  position: absolute;
  right: 180px;
  top: 50%;
  width: 360px; height: 240px;
  transform: translateY(-50%) translateX(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.2,0.8,0.2,1), transform 0.32s cubic-bezier(0.2,0.8,0.2,1);
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,184,66,0.2);
  overflow: hidden;
  z-index: 30;
  background: var(--navy);
}
.line-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.line-preview-tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(11,15,23,0.82);
  backdrop-filter: blur(6px);
  padding: 7px 10px;
  font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--gold);
  border-left: 2px solid var(--gold);
}
.line-preview::before {
  content: ""; position: absolute; top: -1px; left: -1px;
  width: 22px; height: 22px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.line:hover .line-preview {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}
.line-thumb {
  width: 140px; height: 100px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  position: relative;
}
.line-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
  transition: transform 0.6s ease;
}
.line:hover .line-thumb img { transform: scale(1.05); }
.line:hover { background: rgba(244,241,236,0.025); }
.line-num {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.16em;
  padding-top: 8px;
}
.line-title {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
  display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap;
}
.line-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  background: rgba(232,184,66,0.12);
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(232,184,66,0.3);
}
.line-desc {
  color: rgba(244,241,236,0.72);
  max-width: 64ch;
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.55;
}
.line-tags {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.line-tags li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  color: rgba(244,241,236,0.7);
}
.line-go {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  align-self: center;
  text-align: right;
  display: inline-flex; align-items: center; gap: 8px;
  justify-content: flex-end;
}
.line-go .arrow { transition: transform 0.2s; color: var(--gold); }
.line:hover .line-go .arrow { transform: translateX(6px); }

@media (max-width: 1080px) {
  .line { grid-template-columns: 50px 110px 1fr 100px; gap: 24px; }
  .line-thumb { width: 110px; height: 80px; }
  .line-preview { right: 140px; width: 300px; height: 200px; }
}
@media (max-width: 860px) {
  .line-preview { display: none; }
}
@media (max-width: 860px) {
  .line { grid-template-columns: 50px 1fr; gap: 20px; padding: 28px 0; }
  .line-thumb { grid-column: 2; width: 100%; height: 160px; }
  .line-body { grid-column: 1 / -1; }
  .line-go { grid-column: 1 / -1; justify-content: flex-start; padding-left: 0; }
}

/* ----------------------- STATS ----------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 48px;
}
.stat {
  padding: 36px 28px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone);
  position: relative;
}
.stat::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 32px; height: 1px;
  background: var(--gold);
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--navy);
  margin-bottom: 18px;
}
.stat-unit { font-size: 0.5em; color: var(--gold); margin-left: 4px; vertical-align: top; }
.stat-k {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stat-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.badges { padding-top: 36px; }
.badges .tech-stamp { margin-bottom: 18px; }
.badge-list {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 8px 12px;
}
.badge-list li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background: var(--bone);
  border: 1px solid var(--line);
  color: var(--ink-2);
}

/* ----------------------- TERRITORIO ----------------------- */
.terr-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 48px 64px;
  align-items: start;
}
.terr-text { grid-column: 1; grid-row: 1; }
.terr-text h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.terr-hl { color: var(--gold); font-style: italic; font-weight: 400; }
.terr-fig {
  grid-column: 2; grid-row: 1 / span 2;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  aspect-ratio: 4/5;
}
.terr-fig img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.terr-fig::before {
  content: ""; position: absolute; top: 12px; left: 12px;
  width: 36px; height: 36px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 2;
}
.terr-fig-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--navy); color: var(--gold);
  padding: 6px 10px;
  font-size: 10px; letter-spacing: 0.18em;
  z-index: 3;
  border: 1px solid rgba(232,184,66,0.3);
}
.terr-pillars {
  grid-column: 1 / -1; grid-row: 2;
  list-style: none;
  grid-template-columns: repeat(3, 1fr) !important;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.terr-pillars li {
  padding: 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.terr-pillars li:nth-child(3n) { border-right: 0; }
.terr-pillars li:nth-last-child(-n+2):nth-child(3n+1),
.terr-pillars li:nth-last-child(-n+2):nth-child(3n+1) ~ li { border-bottom: 0; }
.terr-pillars li:last-child { border-right: 0; }
.terr-pillars .mono {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.terr-pillars h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.terr-pillars p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(244,241,236,0.65);
}

@media (max-width: 980px) {
  .terr-grid { grid-template-columns: 1fr; }
  .terr-fig { grid-column: 1; grid-row: 2; min-height: 360px; }
  .terr-pillars { grid-column: 1; grid-row: 3; grid-template-columns: repeat(2, 1fr); }
  .terr-pillars li { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .terr-pillars li:nth-child(2n) { border-right: 0; }
  .terr-pillars li:nth-child(odd) { border-right: 1px solid var(--line-dark); }
}
@media (max-width: 480px) {
  .terr-pillars { grid-template-columns: 1fr; }
  .terr-pillars li { border-right: 0 !important; }
}

/* ----------------------- CTA PRE-FOOTER ----------------------- */
.cta-pre { padding: clamp(72px, 9vw, 120px) 0; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.cta-grid h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.cta-side p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 44ch;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .cta-grid { grid-template-columns: 1fr; gap: 28px; }
}
