/* ============================================================
   Oracle Card Reading — interactive widget
   Scoped under .orc / .orc-* to avoid clashing with contents.css.
   Dark, mystical panel embedded in the (light) SEO article page.
   ============================================================ */

.orc {
  --orc-gold: #e9c46a;
  --orc-gold-deep: #c9a227;
  --orc-ink: #f4ecff;
  --orc-muted: #b9aee0;
  --orc-radius: 14px;
  --orc-card-w: 108px;

  position: relative;
  margin: 32px 0 40px;
  padding: 40px 22px 46px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 50% -10%, #3a2b63 0%, rgba(58, 43, 99, 0) 60%),
    linear-gradient(160deg, #171226 0%, #241a3d 48%, #120e20 100%);
  box-shadow: 0 18px 50px rgba(20, 12, 45, 0.45), inset 0 0 0 1px rgba(233, 196, 106, 0.12);
  color: var(--orc-ink);
  text-align: center;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* faint starfield */
.orc::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 75% 20%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 60% 65%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 32% 80%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 88% 72%, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.orc > * { position: relative; z-index: 1; }

.orc__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orc-gold);
  margin: 0 0 6px;
}

.orc__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 4.4vw, 30px);
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}

.orc__lede {
  max-width: 40ch;
  margin: 0 auto 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--orc-muted);
}

/* ---------- question input ---------- */
.orc__field { max-width: 460px; margin: 0 auto 20px; text-align: left; }
.orc__label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--orc-muted);
  margin: 0 0 7px;
}
.orc__input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(233, 196, 106, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--orc-ink);
  font-size: 15px;
  resize: vertical;
  min-height: 52px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.orc__input::placeholder { color: rgba(185, 174, 224, 0.6); }
.orc__input:focus {
  outline: none;
  border-color: var(--orc-gold);
  box-shadow: 0 0 0 3px rgba(233, 196, 106, 0.15);
}

/* Example-question chips — tap to fill the box */
/* Suggested questions.
   These were pills in a wrapping flex row, which assumed short labels. The examples are
   full sentences, so each pill hugged a different width and the hint — a flex sibling —
   shared the first line with the first pill, leaving it indented differently from the
   other two. They are now full-width rows that line up with the textarea above, which is
   also how the Agastya widget renders the same idea. */
.orc-examples {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}
.orc-examples__hint {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--orc-muted);
  opacity: 0.9;
  margin-bottom: 1px;
}
.orc-example {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: inherit;
  font-size: 13.5px;
  line-height: 1.55;
  text-align: left;
  color: var(--orc-ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(233, 196, 106, 0.24);
  /* matches .orc__input so the suggestions read as part of the same field */
  border-radius: 12px;
  padding: 11px 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}

/* Leading mark, swapped for a tick once the example is in the box. */
.orc-example::before {
  content: '✦';
  flex: 0 0 auto;
  font-size: 11px;
  line-height: 1.7;
  color: var(--orc-gold);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.orc-example:hover {
  background: rgba(233, 196, 106, 0.1);
  border-color: rgba(233, 196, 106, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(12, 8, 28, 0.35);
}

.orc-example:hover::before { opacity: 1; }

.orc-example.is-active {
  background: rgba(233, 196, 106, 0.16);
  border-color: var(--orc-gold);
  color: #fff;
}

.orc-example.is-active::before { content: '✓'; opacity: 1; font-size: 12px; }

/* ---------- primary button ---------- */
.orc__btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #241a0a;
  background: linear-gradient(135deg, #f7dd8f 0%, var(--orc-gold) 45%, var(--orc-gold-deep) 100%);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.orc__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 39, 0.45); }
.orc__btn:active { transform: translateY(0); }
.orc__btn:disabled { filter: grayscale(0.5) brightness(0.8); cursor: not-allowed; box-shadow: none; transform: none; }

.orc__btn--ghost {
  background: transparent;
  color: var(--orc-gold);
  box-shadow: inset 0 0 0 1px rgba(233, 196, 106, 0.5);
}
.orc__btn--ghost:hover { background: rgba(233, 196, 106, 0.1); box-shadow: inset 0 0 0 1px var(--orc-gold); }

.orc__hint { margin-top: 14px; font-size: 12.5px; color: var(--orc-muted); }

/* ============================================================
   Card primitive (shared by fan, shuffle, reveal, result)
   ============================================================ */
.orc-card {
  width: var(--orc-card-w);
  aspect-ratio: 5 / 8;
  border-radius: var(--orc-radius);
  position: relative;
}

/* CSS card back design (used until card-back.webp is supplied) */
.orc-card__cover {
  position: absolute;
  inset: 0;
  border-radius: var(--orc-radius);
  background:
    radial-gradient(80% 60% at 50% 28%, rgba(233, 196, 106, 0.22), transparent 70%),
    linear-gradient(160deg, #2c2150 0%, #3a2b63 50%, #1e1638 100%);
  box-shadow: inset 0 0 0 1px rgba(233, 196, 106, 0.45), inset 0 0 0 5px rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(233, 196, 106, 0.9);
  overflow: hidden;
}
.orc-card__cover::before {
  content: '✦';
  font-size: calc(var(--orc-card-w) * 0.34);
  text-shadow: 0 0 18px rgba(233, 196, 106, 0.6);
}
.orc-card__cover::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 9px;
  border: 1px solid rgba(233, 196, 106, 0.28);
  pointer-events: none;
}

.orc-card__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--orc-radius);
  box-shadow: inset 0 0 0 1px rgba(233, 196, 106, 0.5);
  background: #2a2a35;
}

/* ============================================================
   Selection fan
   ============================================================ */
.orc-fan {
  position: relative;
  height: 225px;
  margin: 6px auto 2px;
  max-width: 620px;
  cursor: pointer;
  touch-action: none; /* let a finger sweep the fan without scrolling the page */
}
.orc-fan__card {
  position: absolute;
  bottom: 6px;
  left: 50%;
  cursor: pointer;
  transform-origin: bottom center;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.2s;
  will-change: transform;
  border-radius: var(--orc-radius);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.orc-fan__card:hover { filter: brightness(1.12); }
/* Picked cards recede behind the fan (see fanStyle: z-index 0, opacity, no taps);
   here they just desaturate so they read as "already taken", not as active choices. */
.orc-fan__card.is-picked { filter: grayscale(0.5); }
.orc-fan__counter {
  margin: 10px 0 0;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--orc-gold);
}
.orc-fan__hint {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--orc-muted);
}

/* Chosen tray — the 3 picked cards shown below the fan, out of the way */
.orc-chosen {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 8px 0 4px;
  min-height: 84px;
}
.orc-chosen__slot {
  width: 52px;
  aspect-ratio: 5 / 8;
  border-radius: 9px;
  border: 1px dashed rgba(233, 196, 106, 0.28);
  transition: border-color 0.3s;
}
.orc-chosen__slot.is-filled {
  border: 1px solid rgba(233, 196, 106, 0.55);
  background:
    radial-gradient(80% 60% at 50% 28%, rgba(233, 196, 106, 0.24), transparent 70%),
    linear-gradient(160deg, #2c2150 0%, #3a2b63 50%, #1e1638 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 10px rgba(233, 196, 106, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(233, 196, 106, 0.9);
  animation: orc-chosen-pop 0.35s both;
}
.orc-chosen__slot.is-filled::before { content: '✦'; font-size: 20px; }
@keyframes orc-chosen-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.82); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   Shuffle animation
   ============================================================ */
.orc-shuffle {
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orc-shuffle__card {
  position: absolute;
  animation: orc-riffle 1.1s ease-in-out infinite;
}
.orc-shuffle__card:nth-child(1) { animation-delay: 0s; }
.orc-shuffle__card:nth-child(2) { animation-delay: 0.14s; }
.orc-shuffle__card:nth-child(3) { animation-delay: 0.28s; }
.orc-shuffle__card:nth-child(4) { animation-delay: 0.42s; }
@keyframes orc-riffle {
  0%   { transform: translateX(0) rotate(0deg); }
  25%  { transform: translateX(-70px) rotate(-9deg); }
  50%  { transform: translateX(0) rotate(0deg); }
  75%  { transform: translateX(70px) rotate(9deg); }
  100% { transform: translateX(0) rotate(0deg); }
}
.orc-status { margin-top: 8px; font-size: 14.5px; letter-spacing: 0.04em; color: var(--orc-muted); }

/* ============================================================
   Intro: static fanned deck
   The opening screen used to be a text field, which read as a form rather than an
   invitation. These are CSS-only card backs — no deck data — so they paint on first
   frame while oracle-cards.json is still loading.
   ============================================================ */
.orc-preview {
  position: relative;
  height: 168px;
  /* Width is constrained to roughly the fan's own footprint (a 84px card swinging ±23°
     around its base reaches about 190px across) and centred, so the tap target is the deck
     itself rather than the full width of the panel. */
  width: 240px;
  margin: 4px auto 22px;
  transition: transform 0.28s ease, filter 0.28s ease;
}

/* Only invite the tap once the deck data has actually loaded; startDraw() no-ops before
   that, and a pointer cursor over a dead control is worse than no cursor at all. */
.orc-preview.is-ready {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.orc-preview.is-ready:hover {
  transform: translateY(-5px) scale(1.045);
  filter: drop-shadow(0 12px 26px rgba(233, 196, 106, 0.22));
}

.orc-preview.is-ready:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.09s;
}

.orc-preview__card {
  position: absolute;
  left: 50%;
  bottom: 0;
  --orc-card-w: 84px;
  transform-origin: 50% 100%;
  animation: orc-preview-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  box-shadow: 0 10px 24px rgba(12, 8, 28, 0.45);
  border-radius: var(--orc-radius);
}

.orc-preview__card:nth-child(1) { animation-delay: 0.02s; }
.orc-preview__card:nth-child(2) { animation-delay: 0.07s; }
.orc-preview__card:nth-child(3) { animation-delay: 0.12s; }
.orc-preview__card:nth-child(4) { animation-delay: 0.17s; }
.orc-preview__card:nth-child(5) { animation-delay: 0.22s; }
.orc-preview__card:nth-child(6) { animation-delay: 0.27s; }
.orc-preview__card:nth-child(7) { animation-delay: 0.32s; }

/* The fan angle lives in an inline transform, so the entrance only animates opacity and
   a small vertical offset — otherwise it would fight the per-card rotation. */
@keyframes orc-preview-rise {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   Spread (reveal + result): Past / Present / Future
   ============================================================ */
.orc-spread {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 26px);
  flex-wrap: wrap;
  margin: 8px 0 6px;
}

/* During the question step the spread is a reminder, not the subject — shrink it so the
   textarea and the button stay above the fold on a phone. */
.orc-spread.is-compact {
  --orc-card-w: 68px;
  gap: clamp(8px, 2.4vw, 16px);
  margin-bottom: 2px;
}

.orc-spread.is-compact .orc-slot { gap: 6px; }
.orc-spread.is-compact .orc-slot__label { font-size: 10px; }
.orc-spread.is-compact .orc-slot__name { font-size: 11px; }

/* ============================================================
   Asking step (question, gathered after the reveal)
   ============================================================ */
.orc-ask {
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(233, 196, 106, 0.16);
  animation: orc-ask-in 0.5s ease both;
}

@keyframes orc-ask-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.orc-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: orc-rise 0.5s both;
}
.orc-slot:nth-child(2) { animation-delay: 0.1s; }
.orc-slot:nth-child(3) { animation-delay: 0.2s; }
@keyframes orc-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.orc-slot__label {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orc-gold);
}
.orc-slot__name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  color: #fff;
  min-height: 1.2em;
}

/* 3D flip */
.orc-flip {
  width: var(--orc-card-w);
  aspect-ratio: 5 / 8;
  perspective: 1100px;
  border-radius: var(--orc-radius);
}
.orc-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0.15, 0.2, 1);
}
.orc-flip.is-flipped .orc-flip__inner { transform: rotateY(180deg); }
.orc-flip__side {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--orc-radius);
}
.orc-flip__reveal { transform: rotateY(180deg); }

/* Glow on the drawn cards while the reading is generated.
   NB: do NOT apply filter to .orc-flip__inner — a filter on a preserve-3d element
   flattens the 3D context and collapses the flip back to the card's cover (the cards
   appeared to "close" during loading). Animate box-shadow on the non-3D wrapper instead,
   so the cards stay face-up and simply glow. */
.orc-flip.is-glowing {
  animation: orc-glow 1.8s ease-in-out infinite;
}
@keyframes orc-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(233, 196, 106, 0.3); }
  50%      { box-shadow: 0 0 22px 4px rgba(233, 196, 106, 0.7); }
}

/* ============================================================
   Mystical loading
   ============================================================ */
.orc-loading { padding: 6px 0 2px; }
.orc-loading__orb {
  width: 60px;
  height: 60px;
  margin: 6px auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #fff 0%, var(--orc-gold) 35%, #7a5cff 100%);
  box-shadow: 0 0 30px rgba(233, 196, 106, 0.7), 0 0 60px rgba(122, 92, 255, 0.5);
  animation: orc-pulse 1.7s ease-in-out infinite;
}
@keyframes orc-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.18); opacity: 1; }
}
.orc-loading__phrase {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--orc-ink);
  min-height: 1.4em;
}

/* phrase fade transition (Vue <transition name="orc-fade">) */
.orc-fade-enter-active, .orc-fade-leave-active { transition: opacity 0.6s ease; }
.orc-fade-enter-from, .orc-fade-leave-to { opacity: 0; }

/* ============================================================
   Reading result
   ============================================================ */
.orc-reading {
  max-width: 560px;
  margin: 22px auto 4px;
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(233, 196, 106, 0.2);
  border-radius: 16px;
  padding: 22px 24px;
}
.orc-reading__question {
  margin: 0 0 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(233, 196, 106, 0.18);
  text-align: center;
}
.orc-reading__qlabel {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orc-gold-deep);
  margin-bottom: 4px;
}
.orc-reading__qtext {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}
.orc-reading__heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: var(--orc-gold);
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: 0.02em;
}
.orc-reading__block { margin: 0 0 16px; }
.orc-reading__block:last-child { margin-bottom: 0; }
.orc-reading__pos {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orc-gold-deep);
  display: block;
  margin-bottom: 3px;
}
.orc-reading__text { margin: 0; font-size: 15px; line-height: 1.68; color: var(--orc-ink); }
.orc-reading__intro {
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--orc-gold);
  text-align: center;
}
.orc-reading__close {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(233, 196, 106, 0.18);
  font-size: 15px;
  line-height: 1.68;
  color: var(--orc-ink);
  text-align: center;
}

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

/* ============================================================
   Notice (error / rate limit) — stays in-world
   ============================================================ */
.orc-notice {
  max-width: 440px;
  margin: 10px auto 0;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(233, 196, 106, 0.25);
}
.orc-notice__icon { font-size: 30px; }
.orc-notice__text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--orc-ink);
  margin: 10px 0 18px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 640px) {
  .orc { --orc-card-w: 84px; padding: 32px 14px 38px; }
  .orc-fan { height: 185px; max-width: 100%; }
  .orc-shuffle { height: 170px; }
}
@media (max-width: 400px) {
  .orc { --orc-card-w: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .orc-flip__inner { transition-duration: 0.01ms; }
  .orc-shuffle__card,
  .orc-loading__orb,
  .orc-flip.is-glowing { animation: none; }
  .orc-slot { animation: none; }
  .orc-preview__card { animation: none; }
  .orc-ask { animation: none; }
  /* Keep the glow as the hover cue, but drop the movement. */
  .orc-preview { transition: filter 0.28s ease; }
  .orc-preview.is-ready:hover,
  .orc-preview.is-ready:active { transform: none; }
}

/* ============================================================
   Article content (page-level, OUTSIDE .orc): deck reference, how-to, FAQ.
   Colours match the site article theme (contents.css): gold #d09b52 / #c0a16b.
   ============================================================ */
.oracle-intro { font-size: 1.05rem; line-height: 1.75; }
.oracle-steps { line-height: 1.7; }
.oracle-steps li { margin-bottom: 10px; }
.oracle-note { font-size: 0.9rem; color: #d09b52; letter-spacing: 0.02em; }

.oracle-deck__theme {
  color: #d09b52;
  border-bottom: 1px solid rgba(208, 155, 82, 0.3);
  padding-bottom: 6px;
  margin: 28px 0 14px;
}
.oracle-deck__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}
.oracle-card-ref {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(208, 155, 82, 0.22);
  border-radius: 12px;
  padding: 12px;
}
.oracle-card-ref img {
  width: 84px;
  height: auto;
  flex: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.oracle-card-ref__body { min-width: 0; }
.oracle-card-ref__body h4 { margin: 2px 0 4px; color: #fff; font-size: 1.02rem; }
.oracle-card-ref__kw { margin: 0 0 8px; color: #d09b52; font-size: 0.8rem; letter-spacing: 0.02em; }
.oracle-card-ref__meaning { margin: 0; color: #d8d8d8; font-size: 0.9rem; line-height: 1.6; }

.oracle-faq h3 { margin: 18px 0 4px; color: #c0a16b; font-size: 1.05rem; }
.oracle-faq p { margin: 0 0 6px; }
.oracle-disclaimer {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: #bbb;
  font-style: italic;
}
@media (max-width: 640px) {
  .oracle-deck__grid { grid-template-columns: 1fr; gap: 14px; }
}
