/* =========================================================================
   LE GRAND QUIZZ — Design system
   Palette inspirée du logo Dem & Terria : bleu marine profond + sarcelle/vert sauge
   Tous les contrastes texte/fond ont été vérifiés (ratio WCAG AA >= 4.5:1)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,900&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  /* Couleurs — fonds (bleu marine, du logo) */
  --ink-950: #0A1628;
  --ink-900: #0F2039;
  --ink-800: #16304F;
  --ink-700: #234269;
  --ink-600: #3A5D8A;
  --mist-400: #8FA3BE;
  --mist-200: #C9D6E5;
  --paper: #F4EDE4;

  /* Couleurs — accents (sarcelle et vert sauge, du logo) */
  --teal: #2E9C97;
  --teal-soft: #5CBBAE;
  --sage: #7FB88F;
  --sage-deep: #4E9463;
  --coral: #E8735F;

  /* Texte à utiliser SUR les surfaces claires (teal/sage/coral) : toujours sombre, jamais blanc */
  --on-accent: #0A1628;

  /* Typo */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Rayons / ombres */
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(46, 156, 151, 0.18), 0 12px 40px -12px rgba(46, 156, 151, 0.3);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(46, 156, 151, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(127, 184, 143, 0.08), transparent 60%),
    var(--ink-950);
  color: var(--paper);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--paper);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--mist-200); }

a { color: var(--teal-soft); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------------------------
   HEADER / NAVIGATION
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 16, 34, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--paper);
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal), var(--teal-soft));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--ink-950);
  font-weight: 900;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a { color: var(--mist-200); }
.nav a:hover { color: var(--teal-soft); text-decoration: none; }

.nav__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--ink-700);
}

/* ---------------------------------------------------------------------
   BOUTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(145deg, var(--teal), var(--teal-soft));
  color: var(--ink-950);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { box-shadow: 0 16px 44px -12px rgba(46, 156, 151, 0.45); }

.btn-secondary {
  background: var(--ink-800);
  color: var(--paper);
  border: 1px solid var(--ink-600);
}
.btn-secondary:hover { background: var(--ink-700); }

.btn-ghost {
  background: transparent;
  color: var(--mist-200);
  border: 1px solid var(--ink-700);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-soft); }

.btn-danger {
  background: rgba(232, 115, 95, 0.12);
  color: var(--coral);
  border: 1px solid rgba(232, 115, 95, 0.3);
}
.btn-danger:hover { background: rgba(232, 115, 95, 0.2); }

.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ---------------------------------------------------------------------
   CARTES
   --------------------------------------------------------------------- */
.card {
  background: var(--ink-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.card-hover {
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 156, 151, 0.35);
}

/* ---------------------------------------------------------------------
   HERO / ACCUEIL
   --------------------------------------------------------------------- */
.hero {
  padding: 72px 0 48px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-soft);
  background: rgba(46, 156, 151, 0.1);
  border: 1px solid rgba(46, 156, 151, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero__title { max-width: 760px; margin-left: auto; margin-right: auto; }
.hero__subtitle {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------
   SÉLECTEURS THÈME / NIVEAU (grille de cartes)
   --------------------------------------------------------------------- */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.choice-card {
  position: relative;
  background: var(--ink-800);
  border: 2px solid var(--ink-700);
  border-radius: var(--radius-md);
  padding: 22px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
}

.choice-card:hover { border-color: var(--teal); transform: translateY(-2px); }

.choice-card.selected {
  border-color: var(--teal);
  background: linear-gradient(160deg, rgba(46, 156, 151, 0.14), var(--ink-800));
  box-shadow: var(--shadow-glow);
}

.choice-card input { position: absolute; opacity: 0; pointer-events: none; }

.choice-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.choice-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--paper);
  margin-bottom: 4px;
}

.choice-card__desc { font-size: 0.86rem; color: var(--mist-400); margin: 0; }

/* ---------------------------------------------------------------------
   JEU — BADGE SCORE (signature visuelle : jeton hexagonal)
   --------------------------------------------------------------------- */
.game-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.game-progress {
  flex: 1;
  min-width: 200px;
}

.game-progress__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--mist-400);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.game-progress__bar {
  height: 8px;
  background: var(--ink-700);
  border-radius: 999px;
  overflow: hidden;
}

.game-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--sage));
  border-radius: 999px;
  transition: width 0.4s ease;
}

.score-token {
  position: relative;
  width: 92px;
  height: 100px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--teal), var(--teal-soft));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.score-token.bump { animation: token-bump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes token-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18) rotate(-4deg); }
  100% { transform: scale(1) rotate(0); }
}

.score-token__inner { text-align: center; color: var(--ink-950); }
.score-token__value { font-family: var(--font-mono); font-weight: 700; font-size: 1.3rem; line-height: 1; display: block; }
.score-token__label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }

/* ---------------------------------------------------------------------
   QUESTION
   --------------------------------------------------------------------- */
.question-card {
  padding: 36px;
}

.question-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--ink-700);
  color: var(--mist-200);
}

.tag-points { background: rgba(46, 156, 151, 0.14); color: var(--teal-soft); }

.question-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 28px;
  line-height: 1.4;
}

.answers-list {
  display: grid;
  gap: 12px;
}

.answer-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--ink-900);
  border: 2px solid var(--ink-700);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--paper);
}

.answer-option:hover:not(:disabled) { border-color: var(--teal); background: var(--ink-800); }

.answer-option__letter {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink-700);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

.answer-option.is-correct {
  border-color: var(--sage);
  background: rgba(127, 184, 143, 0.1);
}
.answer-option.is-correct .answer-option__letter { background: var(--sage); color: var(--ink-950); }

.answer-option.is-wrong {
  border-color: var(--coral);
  background: rgba(232, 115, 95, 0.1);
}
.answer-option.is-wrong .answer-option__letter { background: var(--coral); color: var(--ink-950); }

.answer-option:disabled { cursor: default; opacity: 0.75; }
.answer-option:disabled:not(.is-correct):not(.is-wrong) { opacity: 0.45; }

/* Feedback / commentaire post-réponse */
.feedback-panel {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--sage);
  background: rgba(127, 184, 143, 0.08);
  animation: feedback-in 0.35s ease;
}

.feedback-panel.wrong {
  border-left-color: var(--coral);
  background: rgba(232, 115, 95, 0.08);
}

@keyframes feedback-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.feedback-panel__title {
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feedback-panel__title.correct-text { color: var(--sage); }
.feedback-panel__title.wrong-text { color: var(--coral); }

.feedback-panel__comment { color: var(--mist-200); font-size: 0.95rem; margin: 0; }

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

/* ---------------------------------------------------------------------
   ÉCRAN DE FIN
   --------------------------------------------------------------------- */
.end-screen {
  text-align: center;
  padding: 48px 36px;
}

.end-screen__score {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  background: linear-gradient(145deg, var(--teal), var(--teal-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin: 12px 0;
}

.end-screen__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.end-stat__value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; }
.end-stat__label { font-size: 0.78rem; color: var(--mist-400); text-transform: uppercase; letter-spacing: 0.05em; }

.ai-message {
  max-width: 520px;
  margin: 28px auto;
  padding: 22px 26px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--mist-200);
  position: relative;
}

.ai-message::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--teal);
  position: absolute;
  top: -10px;
  left: 14px;
  opacity: 0.5;
}

/* ---------------------------------------------------------------------
   FORMULAIRES
   --------------------------------------------------------------------- */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--mist-200);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--ink-900);
  border: 1.5px solid var(--ink-700);
  border-radius: var(--radius-sm);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.15s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
}

textarea.form-control { resize: vertical; min-height: 90px; }

.form-hint { font-size: 0.8rem; color: var(--mist-400); margin-top: 6px; }

.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--teal); }

/* ---------------------------------------------------------------------
   ALERTES / FLASH MESSAGES
   --------------------------------------------------------------------- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.92rem;
  border-left: 4px solid;
}

.alert-success { background: rgba(127, 184, 143, 0.1); border-color: var(--sage); color: #A7F3C6; }
.alert-error   { background: rgba(232, 115, 95, 0.1); border-color: var(--coral); color: #FFC3BC; }
.alert-info    { background: rgba(46, 156, 151, 0.1); border-color: var(--teal); color: var(--teal-soft); }

/* ---------------------------------------------------------------------
   TABLEAUX (admin, historique)
   --------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--ink-700); }

table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

thead th {
  text-align: left;
  padding: 12px 16px;
  background: var(--ink-900);
  color: var(--mist-400);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  border-bottom: 1px solid var(--ink-700);
}

tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-800);
  color: var(--mist-200);
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

/* ---------------------------------------------------------------------
   LAYOUT ADMIN
   --------------------------------------------------------------------- */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; gap: 0; min-height: calc(100vh - 70px); }

.admin-sidebar {
  background: var(--ink-900);
  border-right: 1px solid var(--ink-700);
  padding: 24px 16px;
}

.admin-sidebar a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--mist-200);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.admin-sidebar a:hover { background: var(--ink-800); text-decoration: none; }
.admin-sidebar a.active { background: rgba(46, 156, 151, 0.12); color: var(--teal-soft); }

.admin-sidebar__section {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mist-400);
  margin: 20px 0 8px;
  padding-left: 14px;
}

.admin-content { padding: 32px; }

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  padding: 20px;
}
.stat-card__value { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: var(--teal-soft); }
.stat-card__label { font-size: 0.82rem; color: var(--mist-400); margin-top: 4px; }

.answer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.answer-row .form-control { flex: 1; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: var(--font-mono);
}
.badge-admin { background: rgba(46, 156, 151, 0.15); color: var(--teal-soft); }
.badge-player { background: rgba(139, 147, 184, 0.15); color: var(--mist-200); }
.badge-active { background: rgba(127, 184, 143, 0.15); color: var(--sage); }
.badge-inactive { background: rgba(232, 115, 95, 0.15); color: var(--coral); }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 40px 24px;
  color: var(--mist-400);
  font-size: 0.85rem;
  border-top: 1px solid var(--ink-800);
  margin-top: 60px;
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 860px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--ink-700);
    display: flex;
    overflow-x: auto;
    padding: 12px;
    gap: 4px;
  }
  .admin-sidebar__section { display: none; }
  .admin-sidebar a { white-space: nowrap; margin-bottom: 0; }
}

@media (max-width: 640px) {
  .nav { gap: 12px; font-size: 0.85rem; }
  .question-card { padding: 22px; }
  .end-screen { padding: 32px 20px; }
  .game-topbar { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------------------------------------------------
   ÉDITEUR RICHE (Quill.js) — thème sombre cohérent avec la charte
   --------------------------------------------------------------------- */
.rich-editor {
  background: var(--ink-900);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.rich-editor .ql-toolbar.ql-snow {
  background: var(--ink-800);
  border: 1.5px solid var(--ink-700);
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.rich-editor .ql-container.ql-snow {
  border: 1.5px solid var(--ink-700);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  min-height: 120px;
  color: var(--paper);
}

.rich-editor .ql-editor.ql-blank::before {
  color: var(--mist-400);
  font-style: normal;
}

.rich-editor .ql-stroke { stroke: var(--mist-200); }
.rich-editor .ql-fill { fill: var(--mist-200); }
.rich-editor .ql-picker-label { color: var(--mist-200); }
.rich-editor button:hover .ql-stroke,
.rich-editor .ql-picker-label:hover .ql-stroke { stroke: var(--teal-soft); }
.rich-editor button:hover .ql-fill { fill: var(--teal-soft); }
.rich-editor button.ql-active .ql-stroke { stroke: var(--teal-soft); }
.rich-editor .ql-picker-options {
  background: var(--ink-800);
  border-color: var(--ink-700);
}
.rich-editor .ql-tooltip {
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}
.rich-editor .ql-tooltip input[type="text"] {
  background: var(--ink-900);
  color: var(--paper);
  border: 1px solid var(--ink-700);
}
.rich-editor .ql-tooltip a.ql-action::after { color: var(--teal-soft); }

/* ---------------------------------------------------------------------
   CONTENU RICHE AFFICHÉ CÔTÉ PUBLIC (commentaires question / fin de partie)
   Le HTML est nettoyé côté serveur avant stockage (voir inc/sanitize.php).
   --------------------------------------------------------------------- */
.rich-content { color: inherit; }
.rich-content p { margin: 0 0 0.6em; }
.rich-content p:last-child { margin-bottom: 0; }
.rich-content a { color: var(--teal-soft); text-decoration: underline; }
.rich-content a:hover { color: var(--teal); }
.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 10px 0;
  display: block;
}
.rich-content ul, .rich-content ol { margin: 0 0 0.6em; padding-left: 1.4em; }
.rich-content strong { color: var(--paper); }
