header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(18, 20, 23, 0.65);
  border-bottom: 1px solid rgba(50, 57, 68, 0.6);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  height: 120px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.mark {
  width: 250px;
  height: 100px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(176, 141, 87, 0.35), transparent 55%), radial-gradient(circle at 70% 65%, rgba(198, 40, 40, 0.28), transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)), #14181d;
  border: 1px solid rgba(176, 141, 87, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  display: grid;
  padding: 10px;
  place-items: center;
  position: relative;
  overflow: hidden;
}
/* simple "road" line in the mark
.mark::after{
  content:"";
  width:26px;height:26px;
  border:2px solid rgba(230,225,216,.5);
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 9px;
  transform: rotate(-25deg);
  opacity:.7;
}*/
.brand h2,
span.sitename {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  letter-spacing: 0.6px;
}
.brand h2 span,
span.sitename .sitename_highlight {
  color: var(--accent);
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav .links {
  display: flex;
  flex-wrap: wrap;
  /* erlaubt 2. Zeile */
  justify-content: flex-end;
  gap: 8px 14px;
  /* row-gap / column-gap */
  align-items: center;
  max-height: calc(2 * 44px);
  /* begrenzt auf 2 Zeilen */
  overflow: hidden;
  /* verhindert Header-Sprung */
}
.nav .links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  color: rgba(230, 225, 216, 0.95);
}
.nav .links a.is-active {
  background: rgba(176, 141, 87, 0.18);
  border: 1px solid rgba(176, 141, 87, 0.45);
}
.links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
  transition: all 0.15s ease;
}
.cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  border: 1px solid rgba(176, 141, 87, 0.35);
  background: rgba(23, 27, 32, 0.75);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.btn:hover {
  border-color: rgba(198, 40, 40, 0.45);
  transform: translateY(-1px);
  transition: all 0.18s ease;
}
.pill {
  font-size: 12px;
  color: rgba(230, 225, 216, 0.85);
  background: rgba(198, 40, 40, 0.18);
  border: 1px solid rgba(198, 40, 40, 0.35);
  padding: 4px 8px;
  border-radius: 999px;
}
@media (max-width: 720px) {
  .nav {
    grid-template-columns: 1fr;
    /* statt 2 Spalten */
    gap: 12px;
    align-items: start;
  }
  .nav .brand {
    justify-content: flex-start;
  }
  /* Nav als 2-Spalten-Grid für saubere Buttons */
  .nav .links {
    display: grid;
    /* statt flex */
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: initial;
    max-height: none;
    /* nicht begrenzen */
    overflow: visible;
  }
  .nav .links a {
    justify-content: center;
    padding: 12px 10px;
    border: 1px solid rgba(50, 57, 68, 0.75);
    background: rgba(18, 20, 23, 0.25);
    border-radius: 14px;
  }
}
/* Sehr kleine Geräte: 1 Spalte */
@media (max-width: 420px) {
  .nav .links {
    grid-template-columns: 1fr;
  }
}
/* Desktop/Mobile Switch */
.mp-nav-mobile {
  display: none;
}
.mp-nav-desktop {
  display: flex;
  gap: 1.1rem;
}
/* FINAL OVERRIDE: Mobile zeigt nur Hamburger */
@media (max-width: 768px) {
  header.nav .mp-nav-desktop {
    display: none !important;
  }
  header.nav .mp-nav-mobile {
    display: block !important;
  }
  header.nav.mp-header {
    /*display: flex;*/
    flex-direction: column !important;
    align-items: stretch;
    gap: 0.65rem;
    position: relative;
    /* nicht über dem Content schweben */
  }
  /* Brand bleibt oben */
  header.nav.mp-header .brand {
    width: 100%;
  }
  /* Hamburger bekommt eigene Zeile */
  header.nav.mp-header .mp-nav-mobile {
    width: 100%;
    align-self: stretch;
    position: relative;
    /* Anker fürs Dropdown */
    z-index: 50;
    /* über dem Content */
  }
  /* Summary nicht in den Content kleben */
  header.nav.mp-header .mp-nav-mobile summary {
    width: 100%;
    justify-content: flex-start;
  }
  header.nav.mp-header .mp-nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    margin-top: 0;
  }
}
/* Desktop zeigt nur normale Links */
@media (min-width: 769px) {
  header.nav .mp-nav-desktop {
    display: flex !important;
  }
  header.nav .mp-nav-mobile {
    display: none !important;
  }
}
/* Details/summary reset */
.mp-nav-mobile summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.22);
}
.mp-nav-mobile summary::-webkit-details-marker {
  display: none;
}
.mp-burger-label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.85;
}
/* Burger Icon (3 Linien, Messing) */
.mp-burger {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.mp-burger::before,
.mp-burger::after,
.mp-burger span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(176, 141, 87, 0.75);
  opacity: 0.9;
}
.mp-burger::before {
  top: 0;
}
.mp-burger::after {
  bottom: 0;
}
.mp-burger span {
  top: 5px;
}
/* Wenn offen: Burger wird zu "X" (ruhig) */
.mp-nav-mobile[open] .mp-burger::before {
  transform: translateY(5px) rotate(45deg);
}
.mp-nav-mobile[open] .mp-burger::after {
  transform: translateY(-5px) rotate(-45deg);
}
.mp-nav-mobile[open] .mp-burger span {
  opacity: 0;
}
.mp-burger::before,
.mp-burger::after,
.mp-burger span {
  transition: transform 0.15s ease, opacity 0.15s ease;
}
/* Panel: wie kleines Inhaltsverzeichnis */
.mp-nav-panel {
  margin-top: 0.6rem;
  padding: 0.65rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 18, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.mp-nav-panel a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  opacity: 0.88;
}
.mp-nav-panel a:hover {
  background: rgba(176, 141, 87, 0.08);
  opacity: 1;
}
/* Active */
.mp-nav-panel a.active {
  border: 1px solid rgba(176, 141, 87, 0.3);
  background: rgba(176, 141, 87, 0.1);
}
/* HERO */
.hero {
  margin-top: 22px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(50, 57, 68, 0.7);
  background: linear-gradient(180deg, rgba(23, 27, 32, 0.65), rgba(18, 20, 23, 0.55)), radial-gradient(900px 450px at 15% 20%, rgba(176, 141, 87, 0.16), transparent 55%), radial-gradient(900px 450px at 80% 35%, rgba(198, 40, 40, 0.12), transparent 55%), rgba(23, 27, 32, 0.35);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, transparent, rgba(230, 225, 216, 0.06), transparent);
  transform: translateX(-70%);
  animation: sheen 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen {
  0% {
    transform: translateX(-70%);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  50% {
    transform: translateX(70%);
    opacity: 0;
  }
  100% {
    transform: translateX(70%);
    opacity: 0;
  }
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 26px;
  align-items: stretch;
}
.hero h2 {
  margin: 0 0 10px;
  font-family: "Libre Baskerville", serif;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0.4px;
}
.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 62ch;
  font-size: 15px;
}
.heroMeta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.35);
  color: rgba(230, 225, 216, 0.9);
  font-size: 13px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.14);
}
.searchCard {
  border-radius: var(--radius);
  border: 1px solid rgba(50, 57, 68, 0.7);
  background: rgba(18, 20, 23, 0.35);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.searchCard h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 225, 216, 0.82);
}
.searchRow {
  display: flex;
  gap: 10px;
}
input[type="search"] {
  width: 100%;
  background: rgba(23, 27, 32, 0.85);
  border: 1px solid rgba(50, 57, 68, 0.9);
  border-radius: 12px;
  padding: 12px 12px;
  color: var(--text);
  outline: none;
  font-size: 14px;
}
input[type="search"]::placeholder {
  color: rgba(174, 182, 191, 0.7);
}
.btnPrimary {
  border-color: rgba(198, 40, 40, 0.55);
  background: rgba(198, 40, 40, 0.16);
  white-space: nowrap;
}
/* SECTION */
.section {
  margin-top: 22px;
}
.sectionHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 10px;
}
.sectionHeader h3 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  letter-spacing: 0.3px;
}
.sectionHeader a {
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px dashed rgba(176, 141, 87, 0.35);
  padding-bottom: 2px;
}
.sectionHeader a:hover {
  color: var(--text);
  border-bottom-color: rgba(198, 40, 40, 0.45);
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card {
  grid-column: span 4;
  border-radius: var(--radius);
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%), rgba(23, 27, 32, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  padding: 16px;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-2px);
  transition: transform 0.18s ease, border-color 0.18s ease;
  border-color: rgba(176, 141, 87, 0.45);
}
.card .kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 225, 216, 0.78);
}
.badge {
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.8);
  color: rgba(230, 225, 216, 0.82);
  background: rgba(18, 20, 23, 0.25);
}
.card h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.card .metaLine {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(50, 57, 68, 0.65);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(230, 225, 216, 0.82);
  font-size: 13px;
}
.metaLine span {
  color: var(--muted);
}
.wide {
  grid-column: span 8;
  min-height: 220px;
}
.half {
  grid-column: span 6;
  min-height: 220px;
}
.tall {
  grid-column: span 4;
  min-height: 220px;
}
.pulse-pin {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7), 0 0 6px var(--dv-accent-glow);
}
.pulse-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--dv-accent-soft);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(4.8);
    opacity: 0;
  }
  100% {
    transform: scale(4.8);
    opacity: 0;
  }
}
.leaflet-control-attribution,
.leaflet-control-attribution a {
  color: var(--dv-accent) !important;
}
.leaflet-control-attribution a:hover {
  color: #f0d68a;
  /* leicht heller für Vintage-Glow */
  text-decoration: none;
}
/*ROUTEN*/
.mp-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}
/* Breakpoints */
@media (max-width: 1100px) {
  .mp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .mp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .mp-grid {
    grid-template-columns: 1fr;
  }
}
.mp-card {
  border-radius: 18px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%), rgba(23, 27, 32, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  min-width: 0;
  height: 100%;
}
.mp-card:hover {
  border-color: rgba(176, 141, 87, 0.45);
  transform: translateY(-2px);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
/* Header: 2-Spalten-Grid -> links Datum, rechts Distanz (nie Overlap) */
.mp-tour__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid rgba(50, 57, 68, 0.55);
  background: rgba(18, 20, 23, 0.2);
}
/* Pills */
.mp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  color: rgba(230, 225, 216, 0.9);
  font-size: 13px;
  white-space: nowrap;
  min-width: 0;
}
.mp-pill i {
  color: rgba(176, 141, 87, 0.95);
  font-size: 13px;
}
/* Datum darf schrumpfen -> ellipsis */
.mp-pill--date {
  min-width: 0;
  overflow: hidden;
}
.mp-pill--date time {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Distanz rechts, mit rotem Akzent */
.mp-pill--km {
  justify-self: end;
  border-color: rgba(198, 40, 40, 0.35);
  background: rgba(198, 40, 40, 0.1);
}
.mp-pill--km i {
  color: rgba(198, 40, 40, 0.95);
}
.mp-pill--km strong {
  font-weight: 700;
}
.mp-unit {
  margin-left: 4px;
  color: rgba(230, 225, 216, 0.75);
}
/* Media / preview */
.mp-tour__media,
.mp-tour__boxmedia {
  display: block;
  position: relative;
  padding: 12px;
  background: rgba(18, 20, 23, 0.12);
}
.mp-tour__media img {
  width: 100%;
  height: 158px;
  /* kompakt für 4–5 pro Zeile */
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(50, 57, 68, 0.7);
  display: block;
  filter: saturate(0.92) contrast(1.05);
  margin-bottom: 10px;
}
.mp-tour__boxmedia img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(50, 57, 68, 0.7);
  display: block;
  filter: brightness(0.78) contrast(0.92) saturate(0.9);
  margin-bottom: 10px;
}
/* Subtiler Vignette-Look */
.mp-tour__media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(60% 60% at 50% 40%, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0.35;
}
/* Badge */
.mp-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.55);
  color: rgba(230, 225, 216, 0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mp-badge i {
  color: rgba(176, 141, 87, 0.95);
  font-size: 12px;
}
#routecontent > [class*="col-"] {
  min-width: 0;
}
/* Tabelle soll sich an Containerbreite halten */
.detail-facts table {
  width: 100%;
  table-layout: fixed;
  /* verhindert, dass lange Inhalte die Spaltenbreite aufblasen */
}
/* Zellen dürfen umbrechen (auch bei langen Strings ohne Leerzeichen) */
.detail-facts td {
  overflow-wrap: anywhere;
  /* bricht zur Not an jeder Stelle */
  word-break: break-word;
  /* Fallback */
  white-space: normal;
  vertical-align: top;
  padding: 0.45rem 0.5rem;
}
/* Optional: erste Spalte (Label) schmal halten */
.detail-facts td:first-child {
  width: 30%;
  color: rgba(230, 225, 216, 0.85);
  opacity: 0.9;
}
/* Optional: zweite Spalte darf breiter sein */
.detail-facts td:last-child {
  width: 70%;
}
.mp-tour__badge {
  margin-left: 10px;
  font-size: 0.9em;
}
.tour-sheet {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  background: rgba(10, 10, 10, 0.28);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
/* optische Trennung zwischen Logbuch und Karte */
.tour-facts {
  border-right: 1px solid rgba(176, 141, 87, 0.14);
  background: rgba(0, 0, 0, 0.2);
}
.facts-head {
  padding: 1rem 1.1rem 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.facts-dl {
  margin: 0;
  padding: 0.6rem 1.1rem 1.1rem;
}
.facts-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.facts-row:last-child {
  border-bottom: 0;
}
.facts-row dt {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}
.facts-row dd {
  margin: 0;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  color: #b08d57;
}
/* Mehrzeilige Werte (Adresse) schöner */
.facts-row dd .sub {
  display: block;
  opacity: 0.78;
  margin-top: 0.15rem;
}
.tour-map {
  background: rgba(0, 0, 0, 0.12);
}
.tour-map__frame {
  height: 820px;
  /* wie bei dir */
  width: 100%;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}
/* Vignette/Glas-Effekt oben drüber */
.tour-map__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1200px 700px at 50% 40%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.leaflet-control {
  border: 1px solid rgba(176, 141, 87, 0.22) !important;
  background: rgba(12, 12, 12, 0.65) !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.leaflet-bar a {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.leaflet-bar a:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}
/*EVENTS*/
.mp-timeline {
  position: relative;
  padding: 20px 0 10px;
}
/* Timeline Item – nur neue CSS */
.mp-tl-item {
  display: grid;
  grid-template-columns: 120px 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px 0;
}
.mp-tl-item-news {
  display: grid;
  grid-template-columns: 50px 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px 0;
}
.start-events .mp-tl-item {
  grid-template-columns: 40px 32px 1fr;
}
/* Datum links (Vintage, ruhig) */
.mp-tl-date {
  text-align: right;
  padding-top: 8px;
  color: rgba(230, 225, 216, 0.92);
  font-family: "Libre Baskerville", serif;
}
.mp-tl-day {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.2px;
}
.mp-tl-month {
  margin-top: 2px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(176, 141, 87, 0.95);
}
.mp-tl-year {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(174, 182, 191, 0.85);
  letter-spacing: 0.08em;
}
/* Rail + Node (Messing-Linie, roter Akzent) */
.mp-tl-rail {
  position: relative;
  min-height: 100%;
  display: flex;
  justify-content: center;
}
.mp-tl-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 2px;
  background: rgba(176, 141, 87, 0.35);
}
.mp-tl-node {
  position: sticky;
  /* fühlt sich beim Scrollen schön „geführt“ an */
  top: 92px;
  /* kann je nach Header-Höhe angepasst werden */
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(18, 20, 23, 0.9);
  border: 2px solid rgba(176, 141, 87, 0.75);
  box-shadow: 0 0 0 6px rgba(198, 40, 40, 0.14);
  margin-top: 14px;
}
/* Content Card rechts */
.mp-tl-card {
  border-radius: 18px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%), rgba(23, 27, 32, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  padding: 14px 14px 12px;
  overflow: hidden;
}
.mp-tl-card:hover {
  border-color: rgba(176, 141, 87, 0.45);
  transform: translateY(-1px);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
/* Chips */
.mp-tl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.mp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  color: rgba(230, 225, 216, 0.9);
  font-size: 13px;
  white-space: nowrap;
}
.mp-chip i {
  color: rgba(176, 141, 87, 0.95);
  font-size: 13px;
}
/* Title + Text */
.mp-tl-title {
  margin: 0 0 6px;
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: rgba(230, 225, 216, 0.96);
}
.mp-tl-item-news .mp-tl-title {
  font-size: 12px;
}
.mp-tl-desc {
  margin: 0 0 12px;
  color: rgba(174, 182, 191, 0.92);
  font-size: 14.5px;
  line-height: 1.45;
  max-width: 90ch;
}
/* Actions */
.mp-tl-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  background: rgba(23, 27, 32, 0.55);
  color: rgba(230, 225, 216, 0.92);
  font-weight: 600;
  font-size: 13px;
}
.mp-btn i {
  color: rgba(198, 40, 40, 0.95);
}
.mp-btn:hover {
  border-color: rgba(198, 40, 40, 0.45);
  transform: translateY(-1px);
  transition: all 0.18s ease;
}
.mp-btn--ghost {
  border-color: rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  padding: 9px 10px;
}
.mp-btn--ghost i {
  color: rgba(176, 141, 87, 0.95);
}
/* Externer Button – bewusst anders als interner "Details"-Link */
.mp-btn--external {
  border-color: rgba(80, 120, 255, 0.45);
  /* kühles Blau */
  background: rgba(80, 120, 255, 0.1);
  color: rgba(230, 235, 255, 0.95);
}
.mp-btn--external i {
  color: rgba(140, 170, 255, 0.95);
}
/* Hover: kein Rot, sondern ruhig & seriös */
.mp-btn--external:hover {
  border-color: rgba(120, 160, 255, 0.75);
  background: rgba(80, 120, 255, 0.18);
  transform: translateY(-1px);
  transition: all 0.18s ease;
}
/* Responsive */
@media (max-width: 820px) {
  .mp-tl-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mp-tl-date {
    text-align: left;
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding-top: 0;
  }
  .mp-tl-rail {
    display: none;
    /* auf Mobile: keine Rail, dafür kompakter */
  }
}
/* ---------- Event Hero ---------- */
.mp-eh {
  margin: 18px 0 18px;
  padding: 22px 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: radial-gradient(900px 420px at 20% 10%, rgba(176, 141, 87, 0.14), transparent 55%), radial-gradient(900px 420px at 80% 0%, rgba(198, 40, 40, 0.1), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%), rgba(23, 27, 32, 0.55);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.3);
  position: static;
}
.mp-eh__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.mp-eh__title {
  margin: 0 0 8px;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  letter-spacing: 0.4px;
  color: rgba(230, 225, 216, 0.98);
}
.mp-eh__lead {
  margin: 0 0 14px;
  color: rgba(174, 182, 191, 0.95);
  font-size: 16px;
  max-width: 80ch;
}
.mp-eh__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}
.mp-eh__actions form {
  margin: 0;
  display: inline-flex;
}
.mp-eh__actions .mp-btn {
  height: 46px;
  /* einheitliche Höhe */
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* Icons im Button leicht ruhiger */
.mp-eh__actions .mp-btn i {
  font-size: 14px;
}
/* Extern-Button etwas "kühler" und dezenter */
.mp-eh__actions .mp-btn--external {
  height: 46px;
}
/* Back-Link: eigene Zeile, aber im selben Block */
.mp-eh__actions small {
  margin-left: auto;
  opacity: 0.92;
  font-size: 13px;
}
/* Kleine screens: Buttons auf volle Breite */
@media (max-width: 720px) {
  .mp-eh__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .mp-eh__actions form {
    width: 100%;
  }
  .mp-eh__actions .mp-btn {
    width: 100%;
    justify-content: center;
  }
  .mp-eh__actions small a {
    width: 100%;
    justify-content: center;
  }
}
/* Back-Link als "Text-Button" im Vintage-Stil */
.mp-eh__actions small a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  color: rgba(230, 225, 216, 0.92) !important;
  text-decoration: none;
}
.mp-eh__actions small a:hover {
  border-color: rgba(176, 141, 87, 0.45);
  transform: translateY(-1px);
  transition: all 0.18s ease;
}
.mp-eh__actions small a i {
  color: rgba(176, 141, 87, 0.95);
}
/* Chips + Pills (reuse look) */
.mp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  color: rgba(230, 225, 216, 0.9);
  font-size: 13px;
  white-space: nowrap;
}
.mp-chip i {
  color: rgba(176, 141, 87, 0.95);
}
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  background: rgba(23, 27, 32, 0.55);
  color: rgba(230, 225, 216, 0.92);
  font-weight: 600;
  font-size: 13px;
}
.mp-btn:hover {
  border-color: rgba(198, 40, 40, 0.45);
  transform: translateY(-1px);
  transition: all 0.18s ease;
}
.mp-btn i {
  color: rgba(198, 40, 40, 0.95);
}
/* Extern (wie vorher) */
.mp-btn--external {
  border-color: rgba(80, 120, 255, 0.45);
  background: rgba(80, 120, 255, 0.1);
  color: rgba(230, 235, 255, 0.95);
}
.mp-btn--external i {
  color: rgba(140, 170, 255, 0.95);
}
.mp-btn--external:hover {
  border-color: rgba(120, 160, 255, 0.75);
  background: rgba(80, 120, 255, 0.18);
}
/* ---------- Kapitel/Sektionen ---------- */
.mp-sec {
  margin: 14px 0;
  padding: 18px 18px 14px;
  border-radius: 18px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%), rgba(23, 27, 32, 0.48);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  scroll-margin-top: calc(var(--site-header-h) + 18px);
}
.mp-sec__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: -18px -18px 14px;
  /* zieht Header bis an Card-Kante */
  padding: 14px 18px 12px;
  /* kontrollierte Innenabstände */
  border-bottom: 1px solid rgba(50, 57, 68, 0.55);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  /* subtiler Header-Hintergrund */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  position: static;
}
.mp-sec__title {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  letter-spacing: 0.2px;
  color: rgba(230, 225, 216, 0.96);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-sec__title i {
  color: rgba(176, 141, 87, 0.95);
  font-size: 14px;
}
.mp-sec__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  color: rgba(230, 225, 216, 0.88);
  font-size: 12px;
  white-space: nowrap;
}
.mp-pill--soft i {
  color: rgba(176, 141, 87, 0.95);
}
.mp-sec__body {
  color: rgba(174, 182, 191, 0.95);
  font-size: 14.5px;
  line-height: 1.55;
}
.mp-sec__body p {
  margin: 0 0 10px;
}
.mp-list {
  margin: 0 0 12px 18px;
  padding: 0;
}
.mp-list li {
  margin: 6px 0;
  color: rgba(230, 225, 216, 0.86);
}
.mp-list b {
  color: rgba(230, 225, 216, 0.96);
}
/* Callout im Vintage-Stil */
.mp-callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  background: rgba(176, 141, 87, 0.1);
  color: rgba(230, 225, 216, 0.92);
}
.mp-callout i {
  color: rgba(176, 141, 87, 0.95);
  margin-top: 2px;
}
/* Inhaltsverzeichnis */
.mp-toc {
  position: sticky;
  top: calc(var(--site-header-h) + var(--gap));
  max-height: calc(100vh - (var(--site-header-h) + var(--gap) * 2));
  overflow: auto;
}
/* 1) Links als Block, nicht Inline (falls dein a irgendwo inline ist) */
.start-events .mp-tl-item {
  display: grid;
  /* falls nicht schon */
  text-decoration: none;
}
/* ===== Mobile: Layout umschalten ===== */
@media (max-width: 640px) {
  /* Statt 3 Spalten: Datum | Inhalt, Rail schmal dazwischen */
  .start-events .mp-tl-item {
    grid-template-columns: 84px 18px 1fr;
    /* Datum fix, Rail, Card flexibel */
    column-gap: 0.75rem;
    align-items: center;
  }
  /* Datum kompakter */
  .start-events .mp-tl-date {
    width: 84px;
  }
  .start-events .mp-tl-day {
    font-size: 1rem;
    /* kleiner als desktop */
    line-height: 1;
  }
  .start-events .mp-tl-month {
    letter-spacing: 0.18em;
  }
  .start-events .mp-tl-year {
    opacity: 0.75;
  }
  /* Rail bleibt sichtbar, aber schmal */
  .start-events .mp-tl-rail {
    justify-self: center;
  }
  /* Card darf nicht zu schmal werden */
  .start-events .mp-tl-card {
    min-width: 0;
    /* wichtig: erlaubt text-overflow in grid */
    padding: 0.9rem 1rem;
  }
  /* Titel: EINZEILIG mit Ellipsis (damit nix hoch wird) */
  .start-events .mp-tl-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 640px) {
  /* Startbox: Item als 3-Spalten-Grid erzwingen */
  .start-events .mp-tl-item {
    display: grid !important;
    grid-template-columns: 84px 18px minmax(0, 1fr) !important;
    column-gap: 0.75rem;
    align-items: center;
  }
  /* Datum / Rail explizit */
  .start-events .mp-tl-date {
    grid-column: 1;
  }
  .start-events .mp-tl-rail {
    grid-column: 2;
  }
  /* Card muss in Spalte 3 sitzen und darf nicht verschwinden */
  .start-events .mp-tl-card {
    grid-column: 3 !important;
    display: block !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 0;
    /* wichtig bei grid */
    width: 100%;
    padding: 0.9rem 1rem;
  }
  /* Titel wieder sichtbar + clamp */
  .start-events .mp-tl-title {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 1 wenn du es flacher willst */
    overflow: hidden;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
  }
}
section.mp-sec .row ul {
  padding-left: 40px;
}
/* =========================
   Garage wrapper
========================= */
.mp-garage {
  margin: 18px 0 28px;
}
/* reuse: chapter/crumbs – falls du die schon hast, kannst du diese weglassen */
.mp-chapter {
  padding: 18px 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: radial-gradient(900px 420px at 20% 10%, rgba(176, 141, 87, 0.14), transparent 55%), radial-gradient(900px 420px at 80% 0%, rgba(198, 40, 40, 0.1), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%), rgba(23, 27, 32, 0.55);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.3);
  position: static;
}
.mp-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(174, 182, 191, 0.95);
  font-size: 13px;
  margin-bottom: 10px;
}
.mp-crumbs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  color: rgba(230, 225, 216, 0.9);
  text-decoration: none;
}
.mp-crumbs a i {
  color: rgba(176, 141, 87, 0.95);
}
.mp-crumbs__sep {
  opacity: 0.7;
}
.mp-chapter__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.mp-chapter__title h1 {
  margin: 0 0 6px;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing: 0.3px;
  color: rgba(230, 225, 216, 0.98);
}
.mp-chapter__title p {
  margin: 0;
  color: rgba(174, 182, 191, 0.95);
  font-size: 14.5px;
  max-width: 85ch;
}
/* =========================
   Model bar (Index)
========================= */
.mp-modelbar {
  display: flex;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(50, 57, 68, 0.55);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.mp-modelbar::-webkit-scrollbar {
  height: 8px;
}
.mp-modelbar::-webkit-scrollbar-thumb {
  background: rgba(50, 57, 68, 0.85);
  border-radius: 999px;
}
.mp-model {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.28);
}
.mp-model:hover {
  border-color: rgba(176, 141, 87, 0.45);
  transform: translateY(-1px);
  transition: all 0.18s ease;
}
.mp-model__name {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}
.mp-model__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
/* Jahr links */
.mp-model__year {
  color: rgba(255, 255, 255, 0.75);
}
/* Status rechts */
.mp-model__status {
  font-style: italic;
}
/* Statusfarben – gedämpft */
.mp-model__status.is-owned {
  color: #b08d57;
  /* Messing */
}
.mp-model__status.is-former {
  color: #7a8188;
  /* Grau */
}
.mp-model__status.is-interest {
  color: #8a6f55;
  /* Braun */
}
.mp-model__meta {
  color: rgba(174, 182, 191, 0.92);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* active model */
.mp-model.is-active {
  border-color: rgba(198, 40, 40, 0.45);
  background: rgba(198, 40, 40, 0.12);
}
.mp-model.is-active .mp-model__meta {
  color: rgba(230, 225, 216, 0.9);
}
/* Status-Farben (gedämpft!) */
.is-owned::before {
  background: #b08d57;
  /* Messing */
}
.is-owned::after {
  content: "in Besitz";
  color: #ffffff;
  font-size: 0.8em;
  font-size: 0.95rem;
  line-height: 1.3;
}
.is-former::before {
  background: #6f7a82;
  /* kühles Grau */
}
.is-former::after {
  content: "Ehem.";
  color: #6f7a82;
  font-size: 0.95rem;
  line-height: 1.3;
}
.is-interest::before {
  background: #8a6f55;
  /* warmes Braun */
}
.is-interest::after {
  content: "Interesse";
  color: #8a6f55;
  font-size: 0.95rem;
  line-height: 1.3;
}
/* =========================
   Content panel
========================= */
.mp-garage__content {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%), rgba(23, 27, 32, 0.48);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* =========================
   Bootstrap Accordion (vintage)
   scoped auf mp-garage
========================= */
.mp-garage .accordion-item {
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.22);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}
.mp-garage .accordion-header {
  margin: 0;
}
.mp-garage .accordion-button {
  background: rgba(18, 20, 23, 0.18);
  color: rgba(230, 225, 216, 0.95);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 14px;
  box-shadow: none;
}
.mp-garage .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(176, 141, 87, 0.45);
}
.mp-garage .accordion-button::after {
  filter: invert(1) opacity(0.85);
  /* Pfeil sichtbar in Dark */
}
.mp-garage .accordion-button:not(.collapsed) {
  background: rgba(176, 141, 87, 0.1);
  color: rgba(230, 225, 216, 0.98);
}
.mp-garage .accordion-body {
  color: rgba(174, 182, 191, 0.95);
  background: rgba(23, 27, 32, 0.35);
}
/* =========================
   Bootstrap Tables (vintage)
========================= */
.mp-garage .table {
  color: rgba(230, 225, 216, 0.92);
  margin-bottom: 0;
}
.mp-garage .table th {
  color: rgba(230, 225, 216, 0.92);
  font-weight: 700;
  width: 28%;
  white-space: normal;
}
.mp-garage .table td {
  color: rgba(174, 182, 191, 0.95);
  white-space: normal;
  overflow-wrap: anywhere;
}
.mp-garage .table > :not(caption) > * > * {
  border-bottom-color: rgba(50, 57, 68, 0.55);
}
.mp-garage .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  background: rgba(18, 20, 23, 0.2);
}
/* rows wie "table-light" in dark neutralisieren */
.mp-garage .table-light,
.mp-garage tr.table-light > * {
  background: rgba(176, 141, 87, 0.1) !important;
  color: rgba(230, 225, 216, 0.95) !important;
}
/* =========================
   List-group / badges (vintage)
========================= */
.mp-garage .list-group-item {
  background: rgba(18, 20, 23, 0.22);
  color: rgba(174, 182, 191, 0.95);
  border-color: rgba(50, 57, 68, 0.55);
}
.mp-garage .badge.bg-secondary {
  background: rgba(176, 141, 87, 0.22) !important;
  border: 1px solid rgba(176, 141, 87, 0.35);
  color: rgba(230, 225, 216, 0.95);
}
/* Alerts / Hinweisboxen */
.mp-garage .alert-secondary {
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.28);
  color: rgba(230, 225, 216, 0.92);
}
/* =========================
   Gallery thumbs (vintage)
========================= */
.mp-garage .gallery-image {
  border-radius: 14px !important;
  border: 1px solid rgba(50, 57, 68, 0.75);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  filter: saturate(0.92) contrast(1.05);
  cursor: pointer;
}
.mp-garage .gallery-image:hover {
  border-color: rgba(198, 40, 40, 0.4);
  transform: translateY(-2px);
  transition: all 0.18s ease;
}
/* Modal (falls du es weiter nutzt) */
.mp-garage .modal-content.bg-dark {
  border-radius: 18px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.92) !important;
}
/* =========================
   Modell Subnavigation
========================= */
.mp-model-subnav {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 12px 8px;
  margin-top: 10px;
  border-bottom: 1px solid rgba(50, 57, 68, 0.55);
}
/* Einträge wie Buch-Register */
.mp-model-subnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px 10px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(174, 182, 191, 0.95);
  text-decoration: none;
  white-space: nowrap;
}
/* Icons ruhig halten */
.mp-model-subnav a i {
  font-size: 13px;
  color: rgba(176, 141, 87, 0.85);
}
/* Hover: nur Farbe, kein Button-Gehabe */
.mp-model-subnav a:hover {
  color: rgba(230, 225, 216, 0.95);
}
/* Active: Register-Markierung */
.mp-model-subnav a.is-active {
  color: rgba(230, 225, 216, 0.98);
}
/* Aktiver Reiter – Linie wie Buchregister */
.mp-model-subnav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: rgba(198, 40, 40, 0.85);
}
/* Mobile: Subnav bleibt ruhig */
@media (max-width: 720px) {
  .mp-model-subnav {
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .mp-model-subnav::-webkit-scrollbar {
    display: none;
  }
}
/* =========================
   History (Vintage) – scoped
========================= */
.mp-history {
  color: rgba(230, 225, 216, 0.92);
}
/* Titelbereich */
.mp-history header h2 {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.3px;
  color: rgba(230, 225, 216, 0.98);
}
.mp-history header p.text-muted {
  color: rgba(174, 182, 191, 0.92) !important;
}
/* Grid-Abstand ein bisschen “ruhiger” */
.mp-history .row.g-4 {
  --bs-gutter-y: 1rem;
}
/* Card Vintage Skin */
.mp-history .card {
  border-radius: 18px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%), rgba(23, 27, 32, 0.55);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
/* Header: statt bg-light ein eingelassener Streifen */
.mp-history .card-header {
  background: radial-gradient(700px 160px at 10% 0%, rgba(176, 141, 87, 0.16), transparent 55%), rgba(18, 20, 23, 0.22) !important;
  border-bottom: 1px solid rgba(50, 57, 68, 0.55);
  color: rgba(230, 225, 216, 0.96);
  padding: 12px 14px;
}
/* Entferne „text-dark“ Wirkung im Dark Theme */
.mp-history .card-header .text-dark {
  color: rgba(230, 225, 216, 0.96) !important;
}
/* Badge: Messing-Vintage statt Bootstrap dark */
.mp-history .badge.bg-dark {
  background: rgba(176, 141, 87, 0.2) !important;
  border: 1px solid rgba(176, 141, 87, 0.35);
  color: rgba(230, 225, 216, 0.95);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Body */
.mp-history .card-body {
  padding: 14px 16px 16px;
  color: rgba(174, 182, 191, 0.95);
  line-height: 1.55;
}
/* Listen: Vintage Bullets + bessere Einrückung */
.mp-history ul {
  margin: 0;
  padding-left: 1.1rem;
}
.mp-history li {
  margin: 7px 0;
}
.mp-history li strong {
  color: rgba(230, 225, 216, 0.95);
  font-weight: 700;
}
.mp-history li em {
  color: rgba(230, 225, 216, 0.86);
}
/* Custom Bullet (Messing-Punkt) */
.mp-history li::marker {
  color: rgba(176, 141, 87, 0.85);
}
/* Optional: einzelne „origin“-Liste etwas markanter */
.mp-history ul.origin {
  padding-left: 1.15rem;
}
/* Footer */
.mp-history footer small.text-muted {
  color: rgba(174, 182, 191, 0.85) !important;
}
/* =========================
   Optional: "Timeline"-Gefühl
   (dezente Linie links)
========================= */
.mp-history .col-12 {
  position: relative;
}
/* eine feine Achse links neben den Cards */
.mp-history .col-12::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 2px;
  background: rgba(176, 141, 87, 0.22);
}
/* Node pro Card */
.mp-history .col-12::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(18, 20, 23, 0.95);
  border: 2px solid rgba(176, 141, 87, 0.7);
  box-shadow: 0 0 0 6px rgba(198, 40, 40, 0.12);
}
/* damit Card nicht auf Linie liegt */
.mp-history .col-12 > .card {
  margin-left: 18px;
}
/* Mobile: Timeline-Deko aus, weil enger */
@media (max-width: 720px) {
  .mp-history .col-12::before,
  .mp-history .col-12::after {
    display: none;
  }
  .mp-history .col-12 > .card {
    margin-left: 0;
  }
}
.mp-maschine-chapters {
  margin-top: 0.35rem;
  padding: 0.15rem 0 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mp-maschine-chapters a,
.mp-maschine-chapters span {
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  font-size: 0.7em;
}
.mp-maschine-chapters a + a::before,
.mp-maschine-chapters span + span::before {
  content: "•";
  margin: 0 0.55rem;
  color: rgba(176, 141, 87, 0.65);
  opacity: 0.9;
}
/* CTA in Messing */
.btn-pass {
  --brass: #b08d57;
  /* anpassen */
  --brass2: #d2b07a;
  color: var(--brass2);
  border: 1px solid rgba(176, 141, 87, 0.55);
  background: rgba(176, 141, 87, 0.08);
  letter-spacing: 0.02em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  /* pill */
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-pass:hover,
.btn-pass:focus {
  color: var(--brass2);
  background: rgba(176, 141, 87, 0.16);
  border-color: rgba(210, 176, 122, 0.75);
  transform: translateY(-1px);
  text-decoration: none;
  outline: none;
}
.btn-pass-arrow {
  opacity: 0.9;
  margin-left: 0.25rem;
}
.paesse th {
  padding: 3px;
}
/* ===== Vintage-Dark Tabs ===== */
.pass-tabs {
  border-bottom: 1px solid rgba(176, 141, 87, 0.22);
  /* Messing-Hauch */
  gap: 0.35rem;
}
.pass-tabs .nav-link {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  background: rgba(255, 255, 255, 0.02);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  padding: 0.55rem 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.pass-tabs .nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(176, 141, 87, 0.25);
}
.pass-tabs .nav-link.active {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.18);
  /* “Messing-Kante” als Register-Marker */
  border-color: rgba(176, 141, 87, 0.45);
  position: relative;
}
.pass-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: rgba(176, 141, 87, 0.55);
  border-radius: 2px;
}
/* ===== Buchseiten-Panel ===== */
.pass-pane {
  background: rgba(10, 10, 10, 0.35);
  /* „dunkles Papier“ */
  border-color: rgba(255, 255, 255, 0.08) !important;
  border-bottom-left-radius: 0.9rem;
  border-bottom-right-radius: 0.9rem;
}
/* ruhiger Textsatz in Pane */
.pass-pane .tab-pane {
  line-height: 1.65;
  max-width: 78ch;
  /* Buchsatzbreite */
}
/* Headings analoger: weniger „UI bold“ */
.pass-pane h2 {
  letter-spacing: 0.04em;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 1rem;
}
/* dezente Trennlinien im Text */
.pass-pane hr {
  border-color: rgba(176, 141, 87, 0.18);
  opacity: 1;
}
.map-frame {
  border-color: rgba(176, 141, 87, 0.22) !important;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
/* Leaflet Controls weniger „plastik“ */
.leaflet-control {
  border: 1px solid rgba(176, 141, 87, 0.25) !important;
  background: rgba(12, 12, 12, 0.65) !important;
}
.leaflet-bar a {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.leaflet-bar a:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}
.gallery-image {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.25rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.gallery-image:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 141, 87, 0.3);
}
.detail-facts {
  background: rgba(10, 10, 10, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.detail-facts h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(176, 141, 87, 0.2);
}
/* Anker-Sprünge: nicht unter Sticky Header kleben */
.pass-chronicle section {
  scroll-margin-top: 110px;
}
/* Inhaltsverzeichnis: wie Kapitel-Register, aber horizontal ohne Scroll (wrapping ist ok) */
.pass-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.22);
  border-radius: 0.9rem;
}
.pass-toc a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 141, 87, 0.18);
  background: rgba(176, 141, 87, 0.06);
}
.pass-toc a:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(176, 141, 87, 0.35);
  background: rgba(176, 141, 87, 0.1);
}
/* Chronik-Linie links */
.pass-chronicle {
  position: relative;
  padding-left: 2.25rem;
}
.pass-chronicle::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(176, 141, 87, 0.05), rgba(176, 141, 87, 0.3), rgba(176, 141, 87, 0.05));
}
/* Abschnitt als “Karteikarte” */
.pass-section {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.28);
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}
/* Kopf mit Marker */
.pass-section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.pass-marker {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.55);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.12);
  flex: 0 0 auto;
  /* exakt auf die Chroniklinie setzen */
  margin-left: -2.9rem;
}
.pass-section h2 {
  margin: 0;
  letter-spacing: 0.04em;
  font-weight: 600;
  opacity: 0.95;
}
/* ruhiger Satz */
.pass-section-body {
  line-height: 1.65;
  max-width: 78ch;
}
.pass-section-body p:last-child {
  margin-bottom: 0;
}
/* Karte/Galerie Rahmen */
.map-frame {
  border-color: rgba(176, 141, 87, 0.22) !important;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.pass-chrono {
  position: relative;
  display: grid;
  gap: 1.25rem;
}
/* Ein Eintrag */
.pass-node {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 1rem;
}
/* Linke Schiene */
.pass-rail {
  position: relative;
  width: 42px;
  display: flex;
  justify-content: center;
}
.pass-dot {
  position: absolute;
  top: 1.15rem;
  /* sitzt auf Höhe Title */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.6);
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.12);
}
.pass-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(176, 141, 87, 0.06), rgba(176, 141, 87, 0.3), rgba(176, 141, 87, 0.06));
}
/* Card rechts */
.pass-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.28);
  border-radius: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
/* Titelband wie bei deinen Event-Cards */
.pass-card__title {
  margin: 0;
  padding: 1.05rem 1.25rem 0.9rem;
  border-bottom: 1px solid rgba(176, 141, 87, 0.14);
  letter-spacing: 0.04em;
  font-weight: 600;
  opacity: 0.95;
}
/* Body */
.pass-card__body {
  padding: 1.1rem 1.25rem 1.35rem;
  line-height: 1.65;
  max-width: 78ch;
}
/* letzte Karte soll Linie nicht weiterziehen (optional) */
.pass-node:last-child .pass-line {
  bottom: 1.15rem;
}
/* Map/Galerie Rahmen */
.map-frame {
  border-color: rgba(176, 141, 87, 0.22) !important;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.pass-chrono .card-header {
  background: radial-gradient(700px 160px at 10% 0%, rgba(176, 141, 87, 0.16), transparent 55%), rgba(18, 20, 23, 0.22) !important;
  border-bottom: 1px solid rgba(50, 57, 68, 0.55);
  color: rgba(230, 225, 216, 0.96);
  padding: 12px 14px;
}
.pass-chrono .card-header .text-dark {
  color: rgba(230, 225, 216, 0.96) !important;
}
.mp-chapters {
  margin-top: 0.35rem;
  padding: 0.15rem 0 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  /* max 2 Zeilen, damit die Box nicht hoch wird */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mp-chapters a,
.mp-chapters span {
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  /* hält jedes „Kapitel“ kompakt */
  font-size: 0.7em;
}
.mp-chapters a:hover {
  color: rgba(255, 255, 255, 0.9);
}
/* Messing-Trenner zwischen Einträgen */
.mp-chapters a + a::before,
.mp-chapters span + span::before {
  content: "•";
  margin: 0 0.55rem;
  color: rgba(176, 141, 87, 0.65);
  opacity: 0.9;
}
.metaLine {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* Status kompakt in der Mitte */
  gap: 1.4rem;
  margin-top: 0.8rem;
}
.meta-item {
  font-size: 0.95rem;
  line-height: 1.3;
}
.meta-item span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.15rem;
}
/* Status speziell */
.meta-status {
  text-align: center;
  white-space: nowrap;
}
.meta-status em {
  font-style: italic;
  letter-spacing: 0.06em;
}
/* OFFEN */
.is-open em {
  color: #b08d57;
  /* Messing */
}
/* GESCHLOSSEN */
.is-closed em {
  color: var(--accent);
}
.forecast {
  font-size: 0.95rem;
}
.forecast-row {
  display: grid;
  grid-template-columns: 80px 28px 60px 1fr;
  align-items: center;
  padding: 6px 0;
}
.forecast-date {
  color: var(--bs-body-color);
  font-weight: 500;
}
.forecast-icon {
  text-align: center;
  color: var(--bs-body-color);
}
.forecast-temp {
  font-weight: 600;
  text-align: right;
}
.forecast-text {
  padding-left: 10px;
  color: var(--bs-body-color);
}
#myFormModal {
  background: rgba(0, 0, 0, 0.72);
  /* statt Bootstrap backdrop */
  backdrop-filter: blur(3px);
}
/* ===== Modal-Karte ===== */
#myFormModal .modal-dialog {
  max-width: 860px;
  /* optional */
}
#myFormModal .modal-content {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.65), inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
/* Kopfzeile wie „Buchdeckel“-Band */
#myFormModal .modal-header {
  border-bottom: 1px solid rgba(176, 141, 87, 0.16);
  padding: 1.15rem 1.25rem;
  background: linear-gradient(to bottom, rgba(176, 141, 87, 0.08), rgba(0, 0, 0, 0));
}
#myFormModal .modal-title {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  opacity: 0.9;
}
/* Close-Button weniger „UI-hell“ */
#myFormModal .btn-close {
  filter: invert(1);
  opacity: 0.55;
}
#myFormModal .btn-close:hover {
  opacity: 0.8;
}
/* Body-Typografie */
#myFormModal .modal-body {
  padding: 1.25rem;
}
#myFormModal h3 {
  margin: 0 0 0.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
#myFormModal p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 72ch;
}
/* ===== Inputs: „dunkles Papier“ ===== */
#myFormModal .form-control {
  background: rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}
#myFormModal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
#myFormModal .form-control:focus {
  background: rgba(10, 10, 10, 0.4);
  border-color: rgba(176, 141, 87, 0.4);
  box-shadow: 0 0 0 0.2rem rgba(176, 141, 87, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
}
/* Floating labels: ruhiger, nicht knallig */
#myFormModal .form-floating > label {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
/* Counter unter den Feldern */
#myFormModal .counter {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.48) !important;
  letter-spacing: 0.06em;
}
/* ===== File input: weniger Standard-Bootstrap ===== */
#myFormModal .form-label {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
#myFormModal input[type="file"].form-control {
  padding: 0.55rem 0.85rem;
}
#myFormModal input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  border: 1px solid rgba(176, 141, 87, 0.3);
  background: rgba(176, 141, 87, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0.8rem;
  padding: 0.35rem 0.65rem;
}
#myFormModal input[type="file"]::file-selector-button:hover {
  background: rgba(176, 141, 87, 0.16);
  border-color: rgba(176, 141, 87, 0.45);
}
/* ===== Button im Messing-Stil ===== */
.btn-brass {
  --brass: #b08d57;
  --brass2: #d2b07a;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(176, 141, 87, 0.38);
  background: rgba(176, 141, 87, 0.12);
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.btn-brass:hover,
.btn-brass:focus {
  background: rgba(176, 141, 87, 0.18);
  border-color: rgba(210, 176, 122, 0.6);
  color: rgba(255, 255, 255, 0.95);
}
table.parkplaetze {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 860px;
  /* horizontal scroll on small screens */
  font-size: 14px;
}
thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  text-align: left;
  padding: 12px 14px;
  color: rgba(230, 225, 216, 0.85);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(18, 20, 23, 0.92);
  border-bottom: 1px solid rgba(50, 57, 68, 0.75);
}
tbody tr {
  background: rgba(23, 27, 32, 0.38);
}
tbody tr:nth-child(even) {
  background: rgba(23, 27, 32, 0.55);
}
tbody tr:hover {
  background: rgba(176, 141, 87, 0.08);
}
td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(50, 57, 68, 0.55);
  vertical-align: middle;
  color: rgba(230, 225, 216, 0.92);
  white-space: nowrap;
}
td img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
}
td img.country,
div.card img.country {
  width: 40px;
  height: 26px;
}
img.clickable {
  cursor: pointer;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #070d19;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
/* Make address & info nicer */
.addr {
  white-space: normal;
  max-width: 360px;
  line-height: 1.35;
}
.muted {
  color: var(--muted);
}
/* Small badges */
.code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  color: rgba(230, 225, 216, 0.9);
  font-size: 13px;
}
/* Type icon (Motorad / Moped) */
.type {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ico {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  display: grid;
  place-items: center;
}
.ico svg {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}
.ico .accent {
  fill: var(--accent);
}
.ico .paper {
  fill: rgba(230, 225, 216, 0.92);
}
/* Action icons (image / map) */
.actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
.iconBtn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(50, 57, 68, 0.75);
  background: rgba(18, 20, 23, 0.25);
  /*display:grid;*/
  place-items: center;
  cursor: pointer;
}
.iconBtn:hover {
  border-color: rgba(176, 141, 87, 0.45);
  background: rgba(23, 27, 32, 0.55);
}
.iconBtn svg {
  width: 18px;
  height: 18px;
}
.iconStroke {
  stroke: rgba(230, 225, 216, 0.9);
}
.iconFill {
  fill: rgba(230, 225, 216, 0.9);
}
.iconAccent {
  fill: var(--accent);
}
/* Container */
.results--vintage {
  --bg: #14110f;
  --card: #1c1714;
  --border: rgba(231, 211, 179, 0.18);
  --text: #e7d3b3;
  --muted: rgba(231, 211, 179, 0.75);
  --accent: #caa76a;
  /* "Messing" */
  --accent2: #7a5c3a;
  /* "Leder" */
  --shadow: rgba(0, 0, 0, 0.35);
  color: var(--text);
}
/* Item */
.results--vintage .result-item {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)), var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 10px 24px var(--shadow);
}
/* Nummer-Kreis */
.results--vintage .result-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(202, 167, 106, 0.35), rgba(202, 167, 106, 0.12));
  border: 1px solid rgba(202, 167, 106, 0.55);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
}
/* Rechts: Title + Badge */
.results--vintage .result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.results--vintage .result-title {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0;
}
/* Auszug */
.results--vintage .result-excerpt {
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.35;
  /* optional: auf 3 Zeilen clampen */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Badge base */
.results--vintage .result-badge.badge {
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  /*text-transform: lowercase;*/
  white-space: nowrap;
}
/* Badge Varianten */
.results--vintage .badge--event {
  background: rgba(202, 167, 106, 0.14);
  border-color: rgba(202, 167, 106, 0.45);
  color: var(--text);
}
.results--vintage .badge--pass {
  background: rgba(122, 92, 58, 0.22);
  border-color: rgba(231, 211, 179, 0.22);
  color: var(--text);
}
/* Optional: hover */
.results--vintage .result-item:hover {
  border-color: rgba(202, 167, 106, 0.35);
  transform: translateY(-1px);
  transition: 120ms ease;
}
/* Kicker allgemein als Flex (falls noch nicht) */
.card .news-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1rem;
}
/* Mobile: untereinander */
@media (max-width: 640px) {
  .card.wide .news-kicker {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  /* rechter Block (Icon+Link) soll nicht „auseinanderlaufen“ */
  .card.wide .news-kicker span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0.85;
  }
  /* Link nicht umbrechen lassen (optional) */
  .card.wide .news-kicker a {
    white-space: nowrap;
  }
}
.art-rss a.mp-tl-item {
  cursor: pointer;
  grid-template-columns: 40px 32px 1fr;
}
.art-news-item a.mp-tl-newsitem {
  cursor: pointer;
  padding-top: 1em;
  font-size: 0.7em;
}
.art-news .news-card strong {
  font-size: 0.9em;
}
.art-news .news-card span {
  font-size: 0.7em;
}
:root {
  --bg: #121417;
  --panel: #171b20;
  --panel2: #1b1f25;
  --text: #e6e1d8;
  /* pergament */
  --muted: #aeb6bf;
  --line: #323944;
  --accent: #c62828;
  /* warmes rot */
  --brass: #b08d57;
  /* messing */
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius2: 12px;
  --max: 1120px;
  --site-header-h: 120px;
  /* Höhe deines fixed/sticky Headers */
  --gap: 16px;
  --mp-font-body: "Libre Baskerville", "Georgia", serif;
  --mp-font-heading: "Libre Baskerville", "Georgia", serif;
  --bs-body-font-family: var(--mp-font-body);
  --dv-accent: #b08d57;
  --dv-accent-soft: rgba(176, 141, 87, 0.35);
  --dv-accent-glow: rgba(176, 141, 87, 0.55);
}
.icon-arrow {
  width: 1em;
  height: 1em;
  color: var(--brass);
  /* wirkt auf fill */
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  min-height: 100vh;
  background: #121417;
}
/* subtle grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(176, 141, 87, 0.12), transparent 55%), radial-gradient(900px 500px at 80% 0%, rgba(198, 40, 40, 0.1), transparent 55%), radial-gradient(900px 600px at 40% 100%, rgba(255, 255, 255, 0.05), transparent 60%), #121417;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}
main {
  padding: 24px 0 64px;
  margin-top: 30px;
}
/* Map placeholder */
.map {
  border-radius: 14px;
  margin-top: 10px;
  height: 128px;
  border: 1px solid rgba(50, 57, 68, 0.7);
  background: radial-gradient(600px 240px at 40% 40%, rgba(176, 141, 87, 0.12), transparent 60%), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 10px), rgba(18, 20, 23, 0.4);
  position: relative;
  overflow: hidden;
}
.pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(198, 40, 40, 0.18);
  top: 44%;
  left: 58%;
}
.pin::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(198, 40, 40, 0.35);
  top: -5px;
  left: -5px;
  opacity: 0.8;
}
footer {
  border-top: 1px solid rgba(50, 57, 68, 0.65);
  padding: 24px 0 40px;
  color: var(--muted);
}
.footGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}
.footGrid h5 {
  margin: 0 0 8px;
  color: rgba(230, 225, 216, 0.88);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
.footGrid p {
  margin: 0;
  font-size: 14px;
}
.footLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footLinks a {
  color: var(--muted);
  border-bottom: 1px dotted rgba(176, 141, 87, 0.25);
  padding-bottom: 2px;
  font-size: 14px;
}
.footLinks a:hover {
  color: var(--text);
  border-bottom-color: rgba(198, 40, 40, 0.4);
}
/* Table container */
.tableWrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/* Responsive */
@media (max-width: 900px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
  .card {
    grid-column: span 12;
  }
  .wide,
  .tall {
    grid-column: span 12;
  }
  .links {
    display: none;
  }
  .brand {
    min-width: 0;
  }
  .footGrid {
    grid-template-columns: 1fr;
  }
  .footLinks {
    justify-content: flex-start;
  }
}
.to-top {
  float: right;
  color: rgba(176, 141, 87, 0.75);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0 20px 20px 0;
}
/*# sourceMappingURL=main.css.map */