/* ============================================================
   Jordan Bloom — Character Sheet
   Implementation of "Jordan Bloom Character Sheet.dc.html"
   (Claude Design project: Jordan's Creative Arsenal)
   ============================================================ */

:root {
  /* Surfaces */
  --ink: #050608;
  --ink-deep: #030405;
  --panel: #040506;
  --panel-raised: #060709;
  --shadow-ink: #07090b;
  --track: #15181c;

  /* Gold */
  --gold: #d9a441;
  --gold-bright: #f0c56a;
  --gold-mid: #c08f3a;
  --gold-deep: #b89a67;
  --parchment: #22201d;

  /* Type */
  --copy: #e8e5de;
  --copy-mid: #c3bfb5;
  --copy-soft: #b0aca2;
  --copy-dim: #a5a49e;
  --copy-faint: #8b8880;
  --cool: #8d9cab;

  --grain: url("assets/grain.svg");

  /* The design's gold border-image, at three strengths */
  --edge-strong: linear-gradient(
      140deg,
      rgba(217, 164, 65, 0.85) 0%,
      rgba(120, 88, 34, 0.425) 18%,
      rgba(240, 197, 106, 0.85) 34%,
      rgba(90, 66, 26, 0.3825) 52%,
      rgba(217, 164, 65, 0.765) 70%,
      rgba(110, 80, 30, 0.425) 86%,
      rgba(240, 197, 106, 0.7225) 100%
    )
    1;
  --edge-mid: linear-gradient(
      140deg,
      rgba(217, 164, 65, 0.6) 0%,
      rgba(120, 88, 34, 0.3) 18%,
      rgba(240, 197, 106, 0.6) 34%,
      rgba(90, 66, 26, 0.27) 52%,
      rgba(217, 164, 65, 0.54) 70%,
      rgba(110, 80, 30, 0.3) 86%,
      rgba(240, 197, 106, 0.51) 100%
    )
    1;
  --edge-soft: linear-gradient(
      140deg,
      rgba(217, 164, 65, 0.5) 0%,
      rgba(120, 88, 34, 0.25) 18%,
      rgba(240, 197, 106, 0.5) 34%,
      rgba(90, 66, 26, 0.225) 52%,
      rgba(217, 164, 65, 0.45) 70%,
      rgba(110, 80, 30, 0.25) 86%,
      rgba(240, 197, 106, 0.425) 100%
    )
    1;

  /* Tapered hairline dividers between cells of a shared frame */
  --rule-v: linear-gradient(
      180deg,
      rgba(217, 164, 65, 0) 0%,
      rgba(217, 164, 65, 0.5) 16%,
      rgba(240, 197, 106, 0.8) 50%,
      rgba(217, 164, 65, 0.5) 84%,
      rgba(217, 164, 65, 0) 100%
    )
    1;
  --rule-h: linear-gradient(
      90deg,
      rgba(217, 164, 65, 0) 0%,
      rgba(217, 164, 65, 0.5) 16%,
      rgba(240, 197, 106, 0.8) 50%,
      rgba(217, 164, 65, 0.5) 84%,
      rgba(217, 164, 65, 0) 100%
    )
    1;

  /* Hairline seam used where panels butt together */
  --seam: linear-gradient(
    140deg,
    rgba(217, 164, 65, 0.55) 0%,
    rgba(120, 88, 34, 0.275) 18%,
    rgba(240, 197, 106, 0.55) 34%,
    rgba(90, 66, 26, 0.2475) 52%,
    rgba(217, 164, 65, 0.495) 70%,
    rgba(110, 80, 30, 0.275) 86%,
    rgba(240, 197, 106, 0.4675) 100%
  );

  --lift:
    inset 0 0 60px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(0, 0, 0, 0.85),
    0 0 0 4px var(--shadow-ink), 0 0 0 5px rgba(192, 143, 58, 0.16),
    0 6px 18px -6px rgba(0, 0, 0, 0.9);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--copy);
  font-family: "EB Garamond", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 164, 65, 0.35);
}

a:hover {
  color: var(--gold-bright);
  border-bottom-color: rgba(240, 197, 106, 0.8);
}

::selection {
  background: rgba(192, 143, 58, 0.3);
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 19px;
  height: 19px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Page + sheet shell ------------------------------ */

.page {
  min-height: 100vh;
  padding: 34px 20px 54px;
  background-color: var(--ink);
  background-image:
    var(--grain),
    radial-gradient(
      1200px 900px at 50% -10%,
      rgba(122, 138, 156, 0.1),
      transparent 62%
    ),
    radial-gradient(
      110% 95% at 50% 45%,
      transparent 30%,
      rgba(0, 0, 0, 0.9) 100%
    );
}

.sheet {
  max-width: 1220px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(192, 143, 58, 0.55);
  border-image: var(--edge-strong);
  background-color: var(--ink-deep);
  background-image:
    var(--grain),
    radial-gradient(
      130% 110% at 50% 0%,
      rgba(217, 164, 65, 0.07),
      transparent 55%
    );
  box-shadow:
    0 40px 120px -50px rgba(0, 0, 0, 0.95),
    inset 0 0 140px rgba(0, 0, 0, 0.95),
    inset 0 0 0 1px rgba(217, 164, 65, 0.06),
    0 0 0 7px var(--shadow-ink),
    0 0 0 8px rgba(192, 143, 58, 0.22);
}

.sheet__inner {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(192, 143, 58, 0.28);
  border-image: linear-gradient(
      140deg,
      rgba(217, 164, 65, 0.42) 0%,
      rgba(120, 88, 34, 0.21) 18%,
      rgba(240, 197, 106, 0.42) 34%,
      rgba(90, 66, 26, 0.189) 52%,
      rgba(217, 164, 65, 0.378) 70%,
      rgba(110, 80, 30, 0.21) 86%,
      rgba(240, 197, 106, 0.357) 100%
    )
    1;
}

/* ---------- Shared surfaces --------------------------------- */

/* Raised plate — banner, vitals cells, recruit block */
.plate,
.vital {
  background-color: var(--panel-raised);
  background-image:
    var(--grain),
    linear-gradient(180deg, rgba(217, 164, 65, 0.06), transparent 55%);
  box-shadow: var(--lift);
}

/* Recessed panel — the working panels */
.panel {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(192, 143, 58, 0.4);
  border-image: var(--edge-mid);
  background-color: var(--panel);
  background-image:
    var(--grain),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%);
  box-shadow: var(--lift);
}

/* Panels that sit inside a shared frame: no outer ring, dividers come from
   the parent grid (see .triptych) so edges never double up */
.panel--flush {
  border: 0;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.7);
}

.label {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copy-faint);
}

.label--cool {
  color: var(--cool);
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.panel__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0;
  padding: 14px 18px;
  font-family: Cinzel, serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
}

.panel__title--banded {
  background: rgba(192, 143, 58, 0.06);
}

/* Filigree divider under every panel title */
.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px 14px;
}

.rule__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 143, 58, 0.15) 30%,
    rgba(217, 164, 65, 0.75)
  );
}

.rule__line--flip {
  background: linear-gradient(
    270deg,
    transparent,
    rgba(192, 143, 58, 0.15) 30%,
    rgba(217, 164, 65, 0.75)
  );
}

.rule__mark {
  width: 46px;
  height: 12px;
  flex: none;
  fill: none;
  stroke: var(--gold-mid);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Banner ------------------------------------------ */

.banner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
}

.banner__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border: 1px solid rgba(192, 143, 58, 0.55);
  border-image: var(--edge-strong);
}

.banner__name h1 {
  margin: 0;
  font-family: Cinzel, serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.banner__name h4 {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.vitals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--seam);
  border: 1px solid rgba(192, 143, 58, 0.55);
  border-image: var(--edge-strong);
}

.vital {
  padding: 16px 20px;
}

.vital .label {
  font-size: 9px;
  letter-spacing: 0.24em;
  margin-bottom: 7px;
}

.vital__value {
  margin: 0;
  font-family: Cinzel, serif;
  font-size: 17px;
}

.vital__value--mail {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ---------- Skills + ability score row ---------------------- */

.mid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
  align-items: stretch;
}

.skills {
  list-style: none;
  margin: 0;
  padding: 20px 22px;
  display: grid;
  gap: 15px;
  align-content: start;
}

.skill {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.skill__pip {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold-mid);
}

.skill__name {
  margin: 0;
  font-size: 19px;
}

.skill__note {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gold-mid);
}

/* Ability wheel */

.panel--scores .wheel-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.wheel {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
}

.wheel__ring {
  position: absolute;
  border-radius: 50%;
}

.wheel__ring--outer {
  inset: 9%;
  border: 1px solid rgba(192, 143, 58, 0.45);
}

.wheel__ring--inner {
  inset: 11.5%;
  border: 1px solid rgba(192, 143, 58, 0.22);
}

.wheel__portrait {
  position: absolute;
  inset: 19%;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(192, 143, 58, 0.4);
  border-image: var(--edge-mid);
  box-shadow:
    0 0 0 4px var(--shadow-ink),
    0 0 0 5px rgba(192, 143, 58, 0.16),
    inset 0 0 60px rgba(0, 0, 0, 0.6);
  background: var(--ink-deep);
}

.wheel__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scores {
  list-style: none;
  margin: 0;
  padding: 0;
}

.score {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score__disc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--parchment);
  border: 2px solid var(--gold-mid);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.14);
  font-family: Cinzel, serif;
  font-weight: 600;
  font-size: 38px;
  color: var(--gold-deep);
}

.score__mod {
  position: absolute;
  top: -4px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--parchment);
  border: 1px solid var(--gold-mid);
  font-size: 13px;
  font-weight: 700;
}

.score__label {
  position: relative;
  margin: -11px 0 0;
  padding: 2px 8px;
  background: var(--parchment);
  border: 1px solid var(--gold-mid);
  border-radius: 3px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b89a67;
  white-space: nowrap;
}

/* ---------- Triptych: quests / stats / statistics ----------- */

.triptych {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.8fr;
  border: 1px solid rgba(192, 143, 58, 0.4);
  border-image: var(--edge-mid);
  background-color: var(--panel);
  background-image:
    var(--grain),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%);
  box-shadow: var(--lift);
}

/* Single tapered hairline between cells — fades out at both ends so it reads
   as an engraved rule rather than a second panel edge. */
.triptych > * + * {
  border-left: 1px solid rgba(192, 143, 58, 0.4);
  border-image: var(--rule-v);
}

.current {
  display: grid;
  gap: 20px;
  padding: 20px 22px;
  align-content: start;
}

.current h3 {
  margin: 0;
  font-family: Cinzel, serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--copy);
}

.current p {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--copy-dim);
}

.current em {
  color: var(--copy-mid);
}

.meters {
  display: grid;
  gap: 13px;
  padding: 20px 22px;
  align-content: start;
}

.meter {
  display: grid;
  grid-template-columns: 1fr 130px 34px;
  gap: 14px;
  align-items: center;
}

.meter__name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copy-mid);
}

.meter__track {
  display: block;
  height: 11px;
  background: var(--track);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.meter__bar {
  display: block;
  height: 100%;
  width: var(--fill, 0%);
  background: linear-gradient(180deg, #e5b45c, #b9862c);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Maxed-out lore: brighter gold with a faint glow */
.meter--maxed .meter__bar {
  background: linear-gradient(180deg, #ffe9a8, #f0bd46 40%, #d99f34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 8px rgba(240, 190, 80, 0.55);
}

.meter--maxed .meter__value {
  color: var(--gold);
}

.meter__value {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--copy-faint);
  text-align: right;
}

.xp {
  margin: 6px 0 0;
  padding: 11px;
  text-align: center;
  border: 1px solid rgba(192, 143, 58, 0.4);
  border-image: var(--edge-mid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.stats {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 20px 22px;
  align-content: start;
}

.stat dt {
  margin-bottom: 5px;
}

.stat dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--copy);
}

.stat dd.is-gold {
  color: var(--gold);
}

/* ---------- Quest log --------------------------------------- */

.questlog {
  border: 1px solid rgba(192, 143, 58, 0.4);
  border-image: var(--edge-mid);
}

.questlog__rows {
  display: grid;
  gap: 1px;
  background: linear-gradient(
    140deg,
    rgba(217, 164, 65, 0.4) 0%,
    rgba(120, 88, 34, 0.2) 18%,
    rgba(240, 197, 106, 0.4) 34%,
    rgba(90, 66, 26, 0.18) 52%,
    rgba(217, 164, 65, 0.36) 70%,
    rgba(110, 80, 30, 0.2) 86%,
    rgba(240, 197, 106, 0.34) 100%
  );
}

.quest {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 172px;
  padding: 22px 24px;
  background-color: var(--ink);
  background-image: var(--grain);
}

.quest__name {
  margin: 0;
  font-family: Cinzel, serif;
  font-weight: 500;
  font-size: 21px;
}

.quest__kind {
  margin: 7px 0 0;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.quest__deed {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--copy-soft);
  text-wrap: pretty;
}

.quest__deed em {
  font-style: italic;
  color: var(--copy);
}

.quest__reel {
  /* One tile geometry for every slot: 16/9 image, fixed caption band below */
  --thumb-w: 168px;
  --thumb-h: 95px;
  --thumb-gap: 9px;
  --thumb-caption-h: 15px;
  --slot-h: calc(
    var(--thumb-h) + var(--thumb-gap) * 2 + var(--thumb-caption-h)
  );

  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--thumb-w);
  justify-content: end;
  align-items: start;
  gap: 10px;
}

/* Image slot — filled, or an empty frame captioned with what belongs there */
.slot {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: var(--slot-h);
  overflow: hidden;
  border: 1px solid rgba(192, 143, 58, 0.35);
  border-image: var(--edge-soft);
  background: var(--ink-deep);
}

a.slot {
  border-bottom: 1px solid rgba(192, 143, 58, 0.35);
}

a.slot:hover {
  border-color: rgba(240, 197, 106, 0.75);
}

.slot img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* No caption — the image owns the whole tile */
.slot--filled img {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.slot__hint {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--thumb-gap);
  padding-bottom: var(--thumb-gap);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  line-height: var(--thumb-caption-h);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(139, 136, 128, 0.75);
}

.slot__hint > .slot__thumb {
  flex: none;
  height: var(--thumb-h);
}

.slot__hint p {
  margin: 0;
}

/* Caption-only slots centre their text instead of hanging it at the bottom */
.slot__hint:not(:has(.slot__thumb)) {
  justify-content: center;
  padding: 10px;
}

/* ---------- Footer ------------------------------------------ */

.footer-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}

.artplate {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(192, 143, 58, 0.4);
  border-image: var(--edge-mid);
  background-color: var(--panel);
  background-image:
    var(--grain),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%);
  box-shadow: var(--lift);
}

.artplate__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-deep);
}

.artplate__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.artplate__caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px 4px;
}

.recruit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 34px 36px;
  border: 1px solid rgba(192, 143, 58, 0.55);
  border-image: var(--edge-strong);
}

.recruit .eyebrow {
  margin-bottom: 14px;
  font-size: 9px;
  letter-spacing: 0.26em;
}

.recruit h2 {
  margin: 0 0 14px;
  font-family: Cinzel, serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.recruit__note {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--copy-soft);
  text-wrap: pretty;
}

.button {
  display: inline-block;
  padding: 15px 30px;
  border: 0;
  background: var(--gold);
  color: #12151a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button:hover {
  background: var(--gold-bright);
  color: #12151a;
}

/* ---------- Responsive -------------------------------------- */

@media (max-width: 1080px) {
  .triptych {
    grid-template-columns: 1fr 1fr;
  }
  /* Statistics drops to its own row — the rule turns horizontal */
  .triptych > :last-child {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(192, 143, 58, 0.4);
    border-image: var(--rule-h);
  }
  .meter {
    grid-template-columns: 1fr 110px 34px;
  }
  /* Statistics spans the full row here — let its fields flow into columns */
  .triptych > :last-child .stats {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    column-gap: 24px;
  }
}

@media (max-width: 900px) {
  .banner,
  .mid,
  .footer-row {
    grid-template-columns: 1fr;
  }
  .banner__name {
    text-align: center;
  }
  .quest {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .quest__reel {
    grid-auto-columns: minmax(0, 1fr);
    justify-content: stretch;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 16px 10px 30px;
  }
  .sheet__inner {
    padding: 12px;
    gap: 12px;
  }
  .triptych {
    grid-template-columns: 1fr;
  }
  .triptych > :last-child {
    grid-column: auto;
  }
  .triptych > * + * {
    border-left: 0;
    border-top: 1px solid rgba(192, 143, 58, 0.4);
    border-image: var(--rule-h);
  }
  .wheel {
    max-width: 400px;
  }
  /* Side padding keeps the outer discs inside the panel */
  .panel--scores .wheel-wrap {
    padding: 16px 34px;
  }
  .meter {
    grid-template-columns: 1fr 84px 30px;
    gap: 10px;
  }
  .score__disc {
    width: 58px;
    height: 58px;
    font-size: 21px;
  }
  .score__mod {
    min-width: 22px;
    height: 19px;
    font-size: 11px;
  }
  .score__label {
    margin-top: -9px;
    font-size: 8px;
  }
  .quest__reel {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .vitals {
    grid-template-columns: 1fr;
  }
  .quest__reel {
    grid-template-columns: 1fr;
  }
}
