/* ------------------------------------------------------------------ *
 *  Custom "lore" admonition / banner type.
 *  Usage in markdown:
 *      !!! lore "The Seeding"
 *          Body text of the lore banner...
 *  Also works collapsible:  ??? lore "Spoiler"
 * ------------------------------------------------------------------ */
:root {
  --md-admonition-icon--lore: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h14v-2H6.012C5.55 21.988 5 21.805 5 21s.55-.988 1.012-1H20V4a2 2 0 0 0-2-2H6zm1 2h11v12H6.012c-.351 0-.687.061-1.012.166V4a1 1 0 0 1 1-1h1z"/></svg>');
}

.md-typeset .admonition.lore,
.md-typeset details.lore {
  border-color: #8e5cff;
}
.md-typeset .lore > .admonition-title,
.md-typeset .lore > summary {
  background-color: rgba(142, 92, 255, 0.12);
}
.md-typeset .lore > .admonition-title::before,
.md-typeset .lore > summary::before {
  background-color: #8e5cff;
  -webkit-mask-image: var(--md-admonition-icon--lore);
          mask-image: var(--md-admonition-icon--lore);
}

/* ------------------------------------------------------------------ *
 *  Hero banner for landing pages.
 *  Usage in markdown:
 *      <div class="lore-hero" markdown>
 *      # Title
 *      Subtitle text.
 *      </div>
 * ------------------------------------------------------------------ */
.lore-hero {
  margin: 0 0 2rem;
  padding: 3rem 2rem;
  border-radius: 0.6rem;
  color: #fff;
  background: linear-gradient(135deg, #2b1055 0%, #7597de 100%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.lore-hero h1,
.lore-hero h2,
.lore-hero p {
  color: #fff;
  margin: 0.2rem 0;
}
.lore-hero p {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Pull-quote / epigraph styling for in-world quotations. */
.md-typeset blockquote.epigraph {
  border: none;
  color: var(--md-default-fg-color--light);
  font-style: italic;
  text-align: center;
  font-size: 1.15rem;
}
.md-typeset blockquote.epigraph cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.8;
}
