:root {
  --lp-red: #d52b1e;
  --lp-red-dark: #a81f16;
  --lp-ink: #17191c;
  --lp-muted: #687078;
  --lp-paper: #f5f3ef;
  --lp-line: #d9d6d0;
  --lp-white: #ffffff;
  --lp-radius: 1.25rem;
  --lp-shadow: 0 1.25rem 3.5rem rgba(20, 24, 28, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--lp-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  text-underline-offset: 0.2em;
}

.py-lg-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  color: #fff;
  background: #000;
  border-radius: 0.5rem;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-navbar {
  background: rgba(20, 22, 25, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  line-height: 1.05;
}

.navbar-brand small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-shield {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  aspect-ratio: 1;
  color: #fff;
  background: var(--lp-red);
  border-radius: 0.35rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.brand-shield-small {
  width: 1.75rem;
  font-size: 1.2rem;
}

.navbar .dropdown-toggle.btn-link {
  border: 0;
  text-decoration: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(153, 25, 18, 0.98), rgba(213, 43, 30, 0.90)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 30%);
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.hero-section::before {
  width: 30rem;
  height: 30rem;
  right: -10rem;
  top: -16rem;
}

.hero-section::after {
  width: 18rem;
  height: 18rem;
  right: 22%;
  bottom: -13rem;
}

.hero-kicker,
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.hero-lead {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-plate {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 10rem;
  padding: 2rem 2.2rem;
  color: #111;
  background: #fff;
  border: 0.5rem solid #111;
  border-radius: 1rem;
  box-shadow: 0 2.25rem 5rem rgba(58, 6, 2, 0.35);
  transform: rotate(-2deg);
}

.hero-plate::before,
.hero-plate::after {
  position: absolute;
  top: 50%;
  width: 0.85rem;
  aspect-ratio: 1;
  content: "";
  background: #111;
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-plate::before {
  left: 0.75rem;
}

.hero-plate::after {
  right: 0.75rem;
}

.hero-plate-canton {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
}

.hero-plate-number {
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-align: center;
}

.hero-plate-cross {
  display: grid;
  place-items: center;
  width: 3.4rem;
  aspect-ratio: 1;
  color: #fff;
  background: var(--lp-red);
  border-radius: 0.3rem;
  font-size: 2.5rem;
  line-height: 1;
}

.hero-caption {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  text-align: center;
}

.project-note {
  background: var(--lp-paper);
}

.attribution-box {
  padding: 2rem;
  background: #fff;
  border-left: 0.4rem solid var(--lp-red);
  border-radius: 0 var(--lp-radius) var(--lp-radius) 0;
  box-shadow: 0 0.75rem 2.5rem rgba(20, 24, 28, 0.06);
}

.section-eyebrow {
  color: var(--lp-red);
}

.archive-section {
  background:
    linear-gradient(rgba(23, 25, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 28, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.archive-status {
  padding: 0.75rem 1rem;
  color: var(--lp-red-dark);
  background: #fff;
  border: 1px solid rgba(213, 43, 30, 0.22);
}

.archive-card {
  overflow: hidden;
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: 0 0.9rem 2.4rem rgba(20, 24, 28, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.archive-card:hover,
.archive-card:focus-within {
  transform: translateY(-0.45rem);
  box-shadow: var(--lp-shadow);
}

.placeholder-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 14rem;
  padding: 2rem;
  overflow: hidden;
  color: var(--lp-ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(237,234,228,0.95)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.025) 10px, rgba(0,0,0,0.025) 20px);
  border-bottom: 1px solid var(--lp-line);
}

.placeholder-image::before,
.placeholder-image::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(23, 25, 28, 0.08);
  border-radius: 50%;
}

.placeholder-image::before {
  width: 13rem;
  height: 13rem;
  right: -6rem;
  top: -7rem;
}

.placeholder-image::after {
  width: 8rem;
  height: 8rem;
  left: -4rem;
  bottom: -4rem;
}

.placeholder-kicker {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.placeholder-plate {
  z-index: 1;
  min-width: 9rem;
  padding: 0.55rem 1rem;
  background: #fff;
  border: 0.22rem solid #111;
  border-radius: 0.45rem;
  box-shadow: 0 0.7rem 1.5rem rgba(20, 24, 28, 0.12);
  font-size: 1.55rem;
  font-weight: 800;
  text-align: center;
}

.placeholder-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: var(--lp-muted);
  font-size: 0.72rem;
}

.principles-section {
  background: #fff;
  border-top: 1px solid #ece9e4;
}

.principle {
  height: 100%;
  padding: 1.5rem;
  border-top: 0.2rem solid var(--lp-ink);
}

.principle-number {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--lp-red);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer {
  color: #fff;
  background: var(--lp-ink);
}

.footer-heading {
  font-weight: 700;
}

.site-footer code {
  color: rgba(255, 255, 255, 0.82);
}

.subpage-hero {
  padding: 4.5rem 0;
  background: var(--lp-paper);
  border-bottom: 1px solid var(--lp-line);
}

.breadcrumb a {
  color: var(--lp-red-dark);
}

.placeholder-image-large {
  min-height: 20rem;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  box-shadow: 0 1rem 3rem rgba(20, 24, 28, 0.08);
}

.content-intro {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--lp-line);
}

.content-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--lp-line);
}

.content-section h2 {
  margin-bottom: 1.2rem;
  font-weight: 750;
}

.editor-placeholder {
  margin: 0;
  padding: 1.4rem;
  color: var(--lp-muted);
  background: #f8f8f7;
  border: 1px dashed #bdb8b0;
  border-radius: 0.75rem;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 10rem;
  color: var(--lp-muted);
  background: var(--lp-paper);
  border: 1px dashed #bdb8b0;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-note {
  padding: 1.5rem;
  background: #fff8f7;
  border: 1px solid rgba(213, 43, 30, 0.2);
  border-radius: 0.75rem;
}

.sidebar-card {
  top: 6rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  box-shadow: 0 0.75rem 2.5rem rgba(20, 24, 28, 0.06);
}

.sidebar-card .list-group-item {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
}

.btn-dark {
  --bs-btn-bg: var(--lp-ink);
  --bs-btn-border-color: var(--lp-ink);
}

.btn-outline-dark:hover {
  background: var(--lp-red);
  border-color: var(--lp-red);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 5rem 0;
  }

  .py-lg-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-plate {
    max-width: 38rem;
    margin-inline: auto;
  }

  .navbar .dropdown-toggle.btn-link {
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 4rem 0;
  }

  .hero-plate {
    gap: 0.6rem;
    min-height: 7.5rem;
    padding: 1.4rem 1.5rem;
    border-width: 0.35rem;
  }

  .hero-plate-cross {
    width: 2.4rem;
    font-size: 1.75rem;
  }

  .attribution-box {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .archive-card,
  .skip-link {
    transition: none;
  }
}

/* Diplomaten-Unterseite */
.diplomat-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(37, 103, 157, 0.10), transparent 30%),
    var(--lp-paper);
}

.plate-stack {
  position: relative;
  max-width: 34rem;
  min-height: 15rem;
  margin-inline: auto;
}

.diplomatic-plate {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.8rem;
  min-width: 18rem;
  padding: 0.55rem 0.85rem;
  color: #111;
  background: #fefefe;
  border: 0.22rem solid #17191c;
  border-radius: 0.35rem;
  box-shadow: 0 1rem 2.5rem rgba(20, 24, 28, 0.14);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.plate-stack .diplomatic-plate {
  position: absolute;
  width: min(100%, 29rem);
}

.plate-stack .plate-green {
  top: 1rem;
  left: 0;
  transform: rotate(-2deg);
}

.plate-stack .plate-blue {
  right: 0;
  bottom: 2rem;
  transform: rotate(2deg);
}

.plate-prefix {
  display: grid;
  place-items: center;
  min-width: 3rem;
  min-height: 2.8rem;
  padding: 0.2rem 0.35rem;
  color: #fff;
  border-radius: 0.15rem;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.plate-green .plate-prefix,
.mini-green {
  background: #24734e;
}

.plate-blue .plate-prefix,
.mini-blue,
.token-blue {
  background: #25679d;
}

.plate-canton {
  font-size: 1.75rem;
}

.plate-number {
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  text-align: right;
}

.placeholder-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.75rem;
}

.research-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  background: var(--lp-red);
  border-radius: 50%;
  font-weight: 800;
}

.history-timeline {
  border-left: 0.2rem solid var(--lp-line);
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 5.3rem 1fr;
  gap: 1rem;
  padding: 0.3rem 0 1.8rem 1.5rem;
}

.history-item::before {
  position: absolute;
  top: 0.35rem;
  left: -0.58rem;
  width: 0.95rem;
  height: 0.95rem;
  content: "";
  background: var(--lp-red);
  border: 0.25rem solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--lp-line);
}

.history-year {
  color: var(--lp-red-dark);
  font-weight: 850;
}

.plate-explainer {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
}

.plate-large {
  max-width: 31rem;
  margin-inline: auto;
  padding: 0.75rem 1rem;
}

.explain-card,
.fact-card,
.series-card {
  height: 100%;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 0.85rem;
}

.explain-token {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  min-height: 2.25rem;
  margin-bottom: 0.9rem;
  padding: 0.25rem 0.55rem;
  color: #111;
  background: #fff;
  border: 2px solid #111;
  border-radius: 0.25rem;
  font-weight: 800;
}

.token-blue {
  color: #fff;
  border-color: #25679d;
}

.mini-prefix {
  display: inline-grid;
  place-items: center;
  min-width: 3.2rem;
  padding: 0.45rem 0.55rem;
  color: #fff;
  border-radius: 0.2rem;
  font-weight: 800;
}

.definition-table th {
  white-space: nowrap;
}

.filter-panel {
  padding: 1.25rem;
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  border-radius: 0.85rem;
}

.data-table-wrap {
  max-height: 46rem;
  overflow: auto;
  border: 1px solid var(--lp-line);
  border-radius: 0.75rem;
}

.data-table {
  margin-bottom: 0;
}

.data-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
}

.code-cell {
  width: 6rem;
  color: var(--lp-red-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 850;
  white-space: nowrap;
}

.series-card {
  background: var(--lp-paper);
}

.series-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--lp-red-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 850;
}

.plate-compact {
  min-width: 0;
  box-shadow: none;
}

.plate-compact .plate-prefix {
  min-width: 2.5rem;
  min-height: 2.2rem;
  font-size: 1.1rem;
}

.plate-compact .plate-canton {
  font-size: 1.25rem;
}

.plate-compact .plate-number {
  font-size: 1.75rem;
}

.gallery-placeholder-tall {
  min-height: 13rem;
  padding: 1rem;
  text-align: center;
}

.source-list .list-group-item {
  padding: 1.1rem 1.25rem;
}

.diplomat-sidebar {
  top: 6rem;
}

.sidebar-fact {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--lp-line);
}

.sidebar-fact-number {
  min-width: 3.5rem;
  color: var(--lp-red);
  font-size: 1.65rem;
  font-weight: 850;
}

@media (max-width: 575.98px) {
  .plate-stack {
    min-height: 12rem;
  }

  .diplomatic-plate {
    min-width: 0;
    gap: 0.45rem;
    padding: 0.45rem 0.6rem;
  }

  .plate-prefix {
    min-width: 2.3rem;
    min-height: 2.15rem;
    font-size: 1.05rem;
  }

  .plate-canton {
    font-size: 1.25rem;
  }

  .plate-number {
    font-size: 1.65rem;
  }

  .history-item {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.7rem;
  }
}

/* Kontrollschilder bis 1932 */
.early-plates-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(213, 43, 30, 0.08), transparent 31%),
    linear-gradient(135deg, #f5f3ef, #ece8e1);
}

.heritage-plate-stage {
  position: relative;
  min-height: 15rem;
  max-width: 34rem;
  margin-inline: auto;
}

.heritage-plate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  min-width: 18rem;
  padding: 0.55rem 0.85rem;
  border: 0.22rem solid #17191c;
  border-radius: 0.3rem;
  box-shadow: 0 1rem 2.5rem rgba(20, 24, 28, 0.15);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1;
}

.heritage-plate-stage .heritage-plate {
  position: absolute;
  width: min(100%, 29rem);
}

.heritage-plate-stage .heritage-plate-black {
  top: 1rem;
  left: 0;
  transform: rotate(-2.2deg);
}

.heritage-plate-stage .heritage-plate-white {
  right: 0;
  bottom: 2rem;
  transform: rotate(2.2deg);
}

.heritage-plate-black {
  color: #f4f1ea;
  background: #17191c;
  border-color: #0e0f10;
}

.heritage-plate-white {
  color: #17191c;
  background: #faf9f5;
  border-color: #17191c;
}

.heritage-cross {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.8rem;
  color: #fff;
  background: #b82118;
  border-radius: 0.22rem 0.22rem 0.4rem 0.4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
}

.heritage-number {
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.03em;
  text-align: center;
}

.heritage-canton {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.8rem;
  color: #17191c;
  background: #e8dfc7;
  border: 2px solid currentColor;
  border-radius: 0.4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.fact-year {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--lp-red-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.early-gallery {
  min-height: 11.5rem;
  padding: 1rem;
  text-align: center;
}

.concordat-rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rule-card {
  padding: 1.4rem;
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  border-radius: 0.85rem;
}

.rule-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--lp-red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 850;
}

.plate-format-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 1.5rem;
  align-items: end;
  padding: 1.5rem;
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
}

.format-demo {
  display: grid;
  gap: 0.75rem;
}

.format-label {
  color: var(--lp-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.format-front,
.format-rear,
.plate-inline {
  position: static !important;
  width: 100%;
  min-width: 0;
  transform: none !important;
  box-shadow: none;
}

.format-front {
  min-height: 4.6rem;
}

.format-rear {
  min-height: 5.8rem;
}

.plate-inline {
  max-width: 24rem;
  min-height: 4.7rem;
}

.plate-inline .heritage-number,
.format-front .heritage-number,
.format-rear .heritage-number {
  font-size: clamp(1.7rem, 5vw, 2.7rem);
}

.transition-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  border-left: 0.35rem solid var(--lp-red);
  border-radius: 0.75rem;
}

.forgery-card {
  padding: 1.4rem;
  background: #fff8f5;
  border: 1px solid rgba(213, 43, 30, 0.2);
  border-radius: 0.85rem;
}

.early-sidebar {
  top: 6rem;
}

@media (max-width: 767.98px) {
  .concordat-rule-grid,
  .plate-format-row {
    grid-template-columns: 1fr;
  }

  .transition-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .transition-banner .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .heritage-plate-stage {
    min-height: 12rem;
  }

  .heritage-plate {
    min-width: 0;
    gap: 0.45rem;
    padding: 0.45rem 0.6rem;
  }

  .heritage-cross {
    width: 2rem;
    height: 2.2rem;
    font-size: 1.35rem;
  }

  .heritage-canton {
    width: 2.1rem;
    height: 2.2rem;
    font-size: 0.68rem;
  }

  .heritage-number {
    font-size: 1.75rem;
  }
}

/* Velonummern-Museum Ergänzung */
.velo-museum-note {
  display: grid;
  padding: clamp(1.4rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(37, 103, 157, 0.07), rgba(255, 255, 255, 0.9)),
    #f7f8f9;
  border: 1px solid rgba(37, 103, 157, 0.22);
  border-left: 0.35rem solid #25679d;
  border-radius: 0.9rem;
}

.historical-image-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 0.8rem;
  box-shadow: 0 0.6rem 1.8rem rgba(20, 24, 28, 0.08);
}

.historical-image-frame {
  display: grid;
  place-items: center;
  min-height: 11.5rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, #f7f5f0, #e9e5dc);
}

.historical-image-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 9rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.historical-image-card figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  font-size: 0.84rem;
}

.historical-image-card figcaption span {
  color: var(--lp-muted);
}

@media (max-width: 767.98px) {
  .historical-image-frame img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 13rem;
  }
}
