/* =====================================================================
   Gedächtnis & Denkspiele – braune Tür.
   Hauptstil zur Seite konsistent (Lato/Playfair), brauner Akzent;
   nur die LCD-Anzeige fällt bewusst retro auf — "Console von früher".
   ===================================================================== */

:root {
  --m-brown:    var(--brown);
  --m-brown-2:  #8a6a45;
  --m-cream:    #faf5ec;
  --m-panel:    #ffffff;
  --m-line:     #e6dccb;

  /* LCD-Look */
  --lcd-bg:        #0d1810;
  --lcd-bg-2:      #16241a;
  --lcd-ink:       #6ef58c;
  --lcd-ink-dim:   rgba(110, 245, 140, .25);
  --lcd-glow:      rgba(110, 245, 140, .55);
}

/* -------- Hero ------------------------------------------------- */

.mem-hero {
  background:
    linear-gradient(180deg, #f5ecdb 0%, #ead9bd 100%);
  border-bottom: 4px solid var(--m-brown);
}
.mem-hero__img {
  width: 100%;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.2));
}
.mem-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--m-brown);
  font-size: clamp(1.6rem, 2.4vw + .8rem, 2.6rem);
  margin: 0 0 .35rem;
}
.mem-hero__subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--m-brown-2);
  font-size: clamp(1.1rem, .5vw + .9rem, 1.4rem);
  margin: 0 0 .9rem;
}
.mem-hero__intro {
  font-size: clamp(1rem, .6vw + .85rem, 1.15rem);
  color: var(--ink);
  margin: 0 0 .65rem;
}

/* -------- Lobby (3 Karten) ------------------------------------ */

.mem-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  background: var(--m-panel);
  border: 1px solid var(--m-line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.mem-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--m-brown);
}
.mem-card--wordle::before   { background: #2f6fb5; }
.mem-card--proverbs::before { background: var(--green); }
.mem-card:hover,
.mem-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: var(--m-brown-2);
  color: var(--ink);
}
.mem-card:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }

.mem-card__badge {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--m-brown);
  font-size: 1.35rem;
  margin-left: .5rem;
}
.mem-card--wordle   .mem-card__badge { color: #1f3a8a; }
.mem-card--proverbs .mem-card__badge { color: #2f5f2f; }

.mem-card__desc {
  color: var(--muted);
  font-size: 1rem;
  margin-left: .5rem;
}
.mem-card__play {
  margin-top: auto;
  margin-left: .5rem;
  font-weight: 700;
  color: var(--m-brown);
}

/* -------- Spiel-Panel (Wrapper) ------------------------------- */

.mem-back {
  display: inline-block;
  color: var(--m-brown);
  font-weight: 700;
  text-decoration: none;
  padding: .3rem 0;
}
.mem-back:hover { text-decoration: underline; }

.mem-panel {
  background: var(--m-panel);
  border: 1px solid var(--m-line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 1.25rem 1.25rem 1.5rem;
  margin-bottom: 1rem;
  overflow: hidden; /* schützt vor horizontalem Overflow durch breite Kinder (LCD-Zeile, Tabellen) */
}
@media (max-width: 575.98px) {
  .mem-panel { padding: .9rem .85rem 1.1rem; border-radius: 10px; }
  .mem-panel h1.h3 { font-size: 1.25rem; line-height: 1.2; }
}
.mem-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: .5rem;
}
.mem-controls { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.mem-text { color: var(--ink); margin: .25rem 0 1rem; }

.mem-hsc-table th, .mem-hsc-table td { font-variant-numeric: tabular-nums; }

/* -------- LCD-Display (Retro-Konsole) ------------------------- */

.mem-lcd {
  display: flex;
  flex-wrap: wrap;        /* auf schmalen Screens umbrechen statt überlaufen */
  align-items: center;
  gap: .65rem .9rem;
  padding: .65rem 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background:
    linear-gradient(180deg, var(--lcd-bg) 0%, var(--lcd-bg-2) 100%);
  border: 2px solid #000;
  border-radius: 8px;
  box-shadow:
    inset 0 2px 0 rgba(0,0,0,.6),
    inset 0 -2px 0 rgba(255,255,255,.05),
    0 2px 6px rgba(0,0,0,.2);
  margin: .25rem 0 1rem;
}
.mem-lcd__label {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  color: var(--lcd-ink-dim);
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.mem-lcd__digits {
  font-family: 'Courier New', 'Menlo', monospace;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--lcd-ink);
  text-shadow: 0 0 6px var(--lcd-glow);
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  /* Phantom-Segmente als Hintergrund — wie eine echte 7-Segment-Anzeige */
  background:
    repeating-linear-gradient(180deg,
      rgba(110, 245, 140, .06) 0 1px,
      transparent 1px 4px);
}
.mem-lcd__divider {
  width: 1px;
  height: 1.6rem;
  background: rgba(110, 245, 140, .25);
}

/* Smartphone: kompakter, Trenner ausblenden, Felder umbrechen.
   Jedes Label+Digit-Paar bleibt zusammen, weil das Label nowrap ist und
   der Divider in den Zeilenumbruch fällt. */
@media (max-width: 575.98px) {
  .mem-lcd {
    gap: .35rem .8rem;
    padding: .5rem .65rem;
    justify-content: flex-start;
  }
  .mem-lcd__label  { font-size: .7rem; letter-spacing: .08em; }
  .mem-lcd__digits { font-size: 1.15rem; }
  .mem-lcd__divider { display: none; }
}

/* -------- Memory-Karten --------------------------------------- */

.mem-grid {
  --cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: .65rem;
  margin: 1rem 0;
  max-width: 720px;
}
.mem-card-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  perspective: 800px;
}
.mem-card-tile__back,
.mem-card-tile__front {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
  transition: transform .35s ease;
  border: 2px solid var(--m-brown);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.mem-card-tile__back {
  background:
    repeating-linear-gradient(45deg, var(--m-brown) 0 10px, var(--m-brown-2) 10px 20px);
  display: grid;
  place-items: center;
  color: #fff;
}
.mem-card-tile__mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2.4rem;
  color: rgba(255,255,255,.85);
}
.mem-card-tile__front {
  background: #fff;
  transform: rotateY(180deg);
  display: grid;
  place-items: center;
}
.mem-card-tile__front img { width: 100%; height: 100%; object-fit: cover; }

.mem-card-tile.is-open  .mem-card-tile__back  { transform: rotateY(180deg); }
.mem-card-tile.is-open  .mem-card-tile__front { transform: rotateY(0); }
.mem-card-tile.is-done .mem-card-tile__front {
  outline: 3px solid var(--green);
  outline-offset: -3px;
  filter: saturate(.9);
}
.mem-card-tile:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; border-radius: 12px; }

/* -------- Wordle ---------------------------------------------- */

.wordle-board {
  --cols: 5;
  display: grid;
  grid-template-columns: repeat(var(--cols), 56px);
  gap: 6px;
  margin: .75rem auto 1rem;
  justify-content: center;
  width: max-content;
}
.wordle-cell {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  background: #fff;
  border: 2px solid #cfd6df;
  border-radius: 4px;
  color: var(--ink);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.wordle-cell.is-filled { border-color: #6c7682; }
.wordle-cell.is-correct { background: #3e7b3e; border-color: #2f5f2f; color: #fff; }
.wordle-cell.is-present { background: #d4a72a; border-color: #a87f10; color: #fff; }
.wordle-cell.is-absent  { background: #6c7682; border-color: #5a6470; color: #fff; }

.wordle-msg {
  text-align: center;
  font-weight: 700;
  margin: .25rem 0 .75rem;
  min-height: 1.4rem;
}

.wordle-keyboard {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; margin: .75rem 0;
}
.wordle-kb-row { display: flex; gap: 5px; }
.wordle-key {
  min-width: 38px; height: 52px;
  padding: 0 .55rem;
  border: 1px solid #c9d2e0;
  background: #e9eef5;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
}
.wordle-key--wide { min-width: 56px; }
.wordle-key:hover { background: #dde4ee; }
.wordle-key.is-correct { background: #3e7b3e; color: #fff; border-color: #2f5f2f; }
.wordle-key.is-present { background: #d4a72a; color: #fff; border-color: #a87f10; }
.wordle-key.is-absent  { background: #6c7682; color: #fff; border-color: #5a6470; }

/* -------- Sprichwörter --------------------------------------- */

.prov-stage {
  margin: .5rem 0 1rem;
}
.prov-prompt {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, .8vw + 1rem, 1.7rem);
  color: var(--ink);
  margin: 0;
}
.prov-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .65rem;
  margin: .25rem 0 1rem;
}
.prov-option {
  padding: 1rem 1.25rem;
  background: #fff;
  border: 2px solid var(--m-line);
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 64px;
  text-align: left;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.prov-option:hover { border-color: var(--m-brown); background: #fffaf1; }
.prov-option:focus-visible { outline: 3px solid #ffbf47; outline-offset: 2px; }
.prov-option:active { transform: translateY(1px); }
.prov-option.is-correct { background: #e7f4e3; border-color: var(--green); color: #1f4d1f; }
.prov-option.is-wrong   { background: #fbe9e9; border-color: var(--red);   color: #6a1a1a; }
.prov-option:disabled { cursor: default; }

.prov-feedback { margin-top: .25rem; min-height: 2rem; display: flex; align-items: center; gap: .75rem; }
.prov-fb { font-weight: 700; }
.prov-fb--good { color: var(--green); }
.prov-fb--bad  { color: var(--red); }

/* -------- Hot or Cold ---------------------------------------- */

.hot-input-row {
  display: flex;
  gap: .5rem;
  margin: 1rem 0 .5rem;
  flex-wrap: wrap;
}
.hot-input-row #hot-input { flex: 1 1 240px; min-width: 200px; }

.hot-msg {
  min-height: 1.5rem;
  margin: .25rem 0 1rem;
  font-size: 1.05rem;
}
.hot-msg__cold { color: var(--muted); font-style: italic; }

.hot-list {
  width: 100%;
  border-collapse: collapse;
  margin-top: .5rem;
}
.hot-list thead th {
  background: var(--m-panel-2, #f7f1e2);
  color: var(--muted);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .35rem .6rem;
  border-bottom: 1px solid var(--m-line);
}
.hot-row { border-bottom: 1px solid var(--m-line); }
.hot-row td { padding: .55rem .6rem; vertical-align: middle; }
.hot-row__word {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}
.hot-row__rank {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  width: 80px;
  white-space: nowrap;
}
.hot-row__heat { min-width: 200px; }

/* Mobile: Tabelle nicht breiter als der Screen, Spalten kompakter. */
@media (max-width: 575.98px) {
  .hot-list { table-layout: fixed; width: 100%; }
  .hot-list thead th { font-size: .72rem; padding: .3rem .35rem; }
  .hot-row td { padding: .45rem .35rem; font-size: .92rem; }
  .hot-row__word { font-size: .95rem; word-break: break-word; }
  .hot-row__rank { width: 50px; font-size: .85rem; }
  .hot-row__heat { min-width: 0; }
  .hot-bar { width: calc(100% - 38px); height: 10px; margin-right: .3rem; }
  .hot-bar__num { font-size: .8rem; }
}

.hot-bar {
  display: inline-block;
  width: calc(100% - 60px);
  height: 14px;
  background: #f3edd8;
  border: 1px solid var(--m-line);
  border-radius: 8px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: .5rem;
}
.hot-bar__fill {
  height: 100%;
  transition: width .35s ease, background .35s ease;
  border-radius: 8px;
}
.hot-bar__num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink);
  vertical-align: middle;
}

.hot-row--last {
  background: #fff8e1;
  outline: 2px solid #ffbf47;
  outline-offset: -2px;
  border-radius: 4px;
}
.hot-row--win {
  background: #e9f4e1;
  color: #1f4d1f;
}
.hot-row--win .hot-row__word::after {
  content: ' ★';
  color: #2f5f2f;
}
.hot-noinfo { margin-top: 1rem; }

.hot-stats {
  margin-bottom: 1rem;
}

.hot-info-btn {
  font-size: .9rem;
}
.hot-info-body h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--m-brown, var(--accent));
  font-size: 1.05rem;
  margin-top: 1rem;
}
.hot-info-body ul { margin: 0 0 .75rem 1.2rem; }
.hot-info-body strong { color: var(--ink); }

.hot-hint-row {
  margin: .5rem 0 1rem;
}
.hot-hint-btn {
  font-weight: 700;
  font-size: 1rem;
  padding: .5rem 1rem;
  border-width: 2px;
}
.hot-hint-btn:disabled { opacity: .5; }
.hot-hint-btn__left {
  font-weight: 400;
  font-size: .9rem;
  opacity: .85;
  margin-left: .25rem;
}

.hot-row__badge {
  display: inline-block;
  margin-right: .25rem;
}
.hot-row--hint .hot-row__word {
  color: #8a6a0c;
  font-style: italic;
}
.hot-row--hint {
  background: #fffbe6;
}

.hot-countdown {
  margin: 1.5rem 0 .25rem;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--m-brown, var(--muted));
}
.hot-countdown__label {
  display: block;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .15rem;
}
.hot-countdown__digits {
  display: inline-block;
  font-family: 'Courier New', 'Menlo', monospace;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--m-brown, #6b4a2b);
  letter-spacing: .12em;
  background: linear-gradient(180deg, #faf3df 0%, #f0e2bd 100%);
  border: 1px solid #d8caa3;
  border-radius: 6px;
  padding: .35rem .9rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.06);
}

/* -------- Fokus-Ring konsistent ------------------------------ */

.page-memory :focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

/* =====================================================================
   Hot or Cold — Game-Look v2
   Klar erkennbar als Spiel, prominentes Eingabefeld, Mobile-first.
   ===================================================================== */

.hot-game {
  background: var(--m-panel);
  border: 1px solid var(--m-line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* ---- Banner mit Temperatur-Strip ---- */
.hot-banner {
  background: linear-gradient(135deg, #2f6fb5 0%, #b53b3b 100%);
  color: #fff;
  padding: 1.1rem 1.25rem 1rem;
}
.hot-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.hot-banner__title-wrap {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
}
.hot-banner__emoji {
  font-size: 1.8rem;
  line-height: 1;
}
.hot-banner__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hot-banner__sub {
  margin: .35rem 0 .85rem;
  color: rgba(255,255,255,.92);
  font-size: 1rem;
  line-height: 1.4;
}
.hot-banner__info {
  background: rgba(255,255,255,.92);
  border: none;
  color: #1f2933;
  font-weight: 600;
}
.hot-banner__info:hover { background: #fff; color: #1f2933; }

.hot-banner__strip {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #66b3ff 0%, #b9d6f4 22%, #fff1c7 50%, #ffae3a 78%, #d83a3a 100%);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
  margin-top: .25rem;
}
.hot-banner__strip-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(0,0,0,.7);
  text-transform: uppercase;
  background: rgba(255,255,255,.7);
  padding: 0 .45rem;
  border-radius: 999px;
}
.hot-banner__strip-label--cold { left: .35rem; }
.hot-banner__strip-label--hot  { right: .35rem; }

/* ---- Spielzone (Eingabe + Hint-Button) ---- */
.hot-play {
  padding: 1.1rem 1.25rem .25rem;
  background:
    radial-gradient(ellipse at top, #fff7e6 0%, transparent 70%),
    var(--m-panel);
}
.hot-play__form { display: flex; flex-direction: column; gap: .65rem; }
.hot-play__label {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0;
}
.hot-play__row {
  display: flex;
  gap: .5rem;
  align-items: stretch;
  flex-wrap: nowrap;
}
.hot-play__input {
  flex: 1 1 auto;
  min-width: 0;          /* verhindert Overflow auf schmalen Screens */
  font-size: 1.15rem;
  padding: .75rem 1rem;
  border: 2px solid #d8caa3;
  border-radius: 10px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.05);
  background: #fff;
}
.hot-play__input:focus {
  border-color: #b88a3b;
  box-shadow: 0 0 0 .2rem rgba(184, 138, 59, .25), inset 0 1px 3px rgba(0,0,0,.05);
  outline: none;
}
.hot-play__btn {
  flex: 0 0 auto;
  background: linear-gradient(180deg, #d8412a 0%, #a82a18 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: .75rem 1.1rem;
  letter-spacing: .02em;
  box-shadow: 0 2px 6px rgba(184, 60, 40, .35);
  white-space: nowrap;
}
.hot-play__btn:hover, .hot-play__btn:focus {
  background: linear-gradient(180deg, #e54e36 0%, #b03020 100%);
  color: #fff;
  box-shadow: 0 3px 9px rgba(184, 60, 40, .45);
}
.hot-play__btn:active { transform: translateY(1px); }

/* Hint-Button bekommt eine eigene Zeile, damit er nicht mit dem CTA konkurriert. */
.hot-play .hot-hint-btn {
  align-self: flex-start;
  margin-top: .15rem;
}

/* ---- Scoreboard: 4 Karten in einer Reihe ---- */
.hot-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  padding: .75rem 1.25rem;
  background: #1f2933;
}
.hot-score {
  background: linear-gradient(180deg, #0d1b2a 0%, #14233a 100%);
  border: 1px solid #2a3a55;
  border-radius: 8px;
  padding: .5rem .55rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.hot-score__label {
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8ea4c4;
  line-height: 1.2;
}
.hot-score__value {
  font-family: 'Courier New', 'Menlo', monospace;
  font-weight: 700;
  font-size: 1.45rem;
  color: #6ef58c;
  text-shadow: 0 0 6px rgba(110, 245, 140, .35);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Versuchsliste im Rahmen ---- */
.hot-results {
  padding: 1rem 1.25rem 1.25rem;
}
.hot-results .hot-list { margin-top: 0; }

/* ---- Mobile-Anpassungen ---- */
@media (max-width: 575.98px) {
  .hot-game { border-radius: 12px; }

  .hot-banner { padding: .85rem .9rem .8rem; }
  .hot-banner__title { font-size: 1.3rem; }
  .hot-banner__emoji { font-size: 1.5rem; }
  .hot-banner__sub { font-size: .95rem; margin-bottom: .65rem; }
  .hot-banner__strip { height: 12px; }
  .hot-banner__strip-label { font-size: .68rem; padding: 0 .35rem; }

  .hot-play { padding: .85rem .9rem .2rem; }
  .hot-play__label { font-size: 1rem; }
  .hot-play__input { font-size: 1.05rem; padding: .65rem .8rem; }
  .hot-play__btn { padding: .65rem .8rem; font-size: 1rem; }
  .hot-play__btn span { display: none; }     /* Emoji weg auf engen Screens, Wort bleibt */

  .hot-scoreboard {
    grid-template-columns: repeat(2, 1fr); /* 2×2-Grid statt 1×4 */
    padding: .65rem .9rem;
    gap: .45rem;
  }
  .hot-score { padding: .4rem .45rem; }
  .hot-score__label { font-size: .62rem; }
  .hot-score__value { font-size: 1.2rem; }

  .hot-results { padding: .8rem .85rem 1rem; }
}
