.uk-navbar-toggle-icon svg {
    width: 30px !important;
    margin-right:20px;
  }
/* Fixed Bottom App-Bar – Hintergrund kommt von der YOOtheme-Section */
.appbar-fixed {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  /* keine background-Angabe hier! */
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}

/* Safe-Area Spacer bleibt transparent */
.appbar-fixed::after {
  content: "";
  display: block;
  height: env(safe-area-inset-bottom, 0px);
}

/* Body-Abstand (dynamisch per JS) */
body.has-appbar { padding-bottom: var(--appbar-height, 0px); }

/* Optionale Hover-States, ohne Hintergrundvorgabe der Section zu stören */
.appbar-fixed a:hover,
.appbar-fixed .uk-active > a { background: rgba(0,0,0,.05); }

/* Dark Mode: NICHT den Hintergrund setzen – nur optional Textfarbe */
@media (prefers-color-scheme: dark) {
  .appbar-fixed {
    /* kein background hier */
    border-top-color: rgba(255,255,255,.12);
    box-shadow: 0 -6px 20px rgba(0,0,0,.4);
  }
  /* Entfernen, wenn YOOtheme „Inverse/Light“ nutzt */
  /* .appbar-fixed a { color: #f4f4f4; } */
}

@media (min-width: 1080px) {
    .tm-page-container .tm-page {
        max-width: 1080px;

    }
}
.app-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
  display: grid; grid-template-columns: repeat(6,1fr);
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom)) 8px;
}
.app-bar__item{ display:flex; flex-direction:column; align-items:center; gap:4px;
  text-decoration:none; color:inherit; padding:8px 4px; min-height:56px; font-size:12px; }
/* Platz für die Leiste schaffen */
:root{ --appbar-h: 72px; }
body{ padding-bottom: var(--appbar-h); }
/* Auf /tv ausblenden (WP Body-Klasse nutzt den Slug) */
.app-bar__item.is-active{ color: var(--uk-primary, #1e87f0); }


.top-weather {
  display:flex;
  justify-content:flex-end;
  font-size:.95rem;
  color:inherit;
}

/* Wrapper: links aktuell, rechts Karten */
.tw-wrap {
  display:flex;
  align-items:center;
  gap:.8rem;
}

/* Aktuelles Wetter links */
.tw-current {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.1rem;
  font-size:.75rem;
}

.twc-location {
  font-weight:600;
  letter-spacing:.02em;
}

.twc-line {
  display:flex;
  align-items:center;
  gap:.25rem;
}

.twc-icon {
  font-size:1rem;
}

.twc-desc {
  opacity:.9;
}

.twc-temp {
  font-weight:600;
}

/* Karten rechts */
.tw-cards {
  display:flex;
  gap:.4rem;
}

.tw-card {
  min-width:68px;
  padding:.3rem .45rem .35rem;
  border-radius:.9rem;
  background:rgba(255,255,255,.04);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  backdrop-filter:blur(4px);
}

.tw-card-today {
  background:rgba(255,255,255,.10);
  box-shadow:0 4px 10px rgba(0,0,0,.25);
}

.twc-top {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  font-size:.55rem;
  opacity:.9;
}

.twc-date {
  font-weight:600;
}

.twc-label {
  text-transform:capitalize;
}

.twc-main {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:.12rem;
  gap:.2rem;
}

.twc-icon-wrap {
  width:24px;
  height:24px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.06);
}

.tw-card-today .twc-icon-wrap {
  width:26px;
  height:26px;
  box-shadow:0 0 0 3px rgba(255,255,255,.08);
}

.twc-icon-lg {
  font-size:1.05rem;
}

.twc-temps {
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  font-size:.6rem;
}

.twc-max {
  font-weight:600;
}

.twc-min {
  opacity:.7;
}

/* Mobile kompakter */
@media (max-width:640px){
  .tw-wrap {
    gap:.45rem;
  }
  .tw-current {
    font-size:.7rem;
  }
  .tw-card {
    min-width:56px;
    padding:.25rem .35rem .3rem;
  }
  .twc-icon-wrap {
    width:20px;
    height:20px;
  }
  .twc-icon-lg {
    font-size:.9rem;
  }
}

/* DataHub API AUsgabe Styling Grid*/

.rlp-grid--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.rlp-card {
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.rlp-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.rlp-card__body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}

.rlp-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.rlp-card__excerpt {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 8px;
}

.rlp-card__address,
.rlp-card__contact {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
}

.rlp-card__website {
  text-decoration: underline;
  font-size: 0.9rem;
}

.rlp-card__button {
  margin-top: 14px;
  align-self: flex-start;
  padding: 10px 18px;
  background: #b0004c; /* deine CI-Farbe */
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.rlp-card__button:hover {
  background: #900041;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}


/* Detailseite Layout */
.rlp-poi-detail {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.rlp-poi-detail__top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* Hero-Slider */
.rlp-poi-detail__hero-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
}
.rlp-poi-detail__hero-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 0.75rem;
  overflow-x: auto;
}
.rlp-poi-detail__hero-thumb {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
}
.rlp-poi-detail__hero-thumb.is-active,
.rlp-poi-detail__hero-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

/* Sidebar (Adresse / Kontakt / Karte) */
.rlp-poi-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rlp-poi-detail__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.rlp-poi-detail__addressbox,
.rlp-poi-detail__contactbox {
  background: #ffffff;
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 0.95rem;
}
.rlp-poi-detail__map-iframe {
  width: 100%;
  height: 210px;
  border-radius: 6px;
}

/* Content unten */
.rlp-poi-detail__content {
  max-width: 800px;
  margin-top: 1rem;
}
.rlp-poi-detail__description,
.rlp-poi-detail__extra,
.rlp-poi-detail__openinghours {
  font-size: 0.98rem;
  line-height: 1.6;
}
.rlp-poi-detail__content h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Mobile: untereinander */
@media (max-width: 768px) {
  .rlp-poi-detail__top {
    grid-template-columns: 1fr;
  }
}



/* Hero etwas höher & mittiger wirken lassen */
.rlp-poi-detail__hero-main img {
  height: 420px;              /* vorher 360px, wirkt mehr "Hero" */
  border-radius: 6px;
}

/* Sidebar-Karten optisch näher an dein Theme */
.rlp-poi-detail__addressbox,
.rlp-poi-detail__contactbox {
  border: 1px solid rgba(0,0,0,0.04);
}

/* Textbereich etwas luftiger */
.rlp-poi-detail__content {
  max-width: 900px;
  margin-top: 2rem;
}
.rlp-poi-detail__content h2 {
  margin-top: 2.5rem;
}

/* Thumbs minimal kleiner, damit sie eleganter wirken */
.rlp-poi-detail__hero-thumb {
  width: 64px;
  height: 48px;
}



.rlp-poi-detail__back {
  max-width: 1200px;
  margin: 0 auto 1rem;
}
.rlp-poi-detail__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f2f2f2;
  color: #333;
  font-size: 0.85rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}
.rlp-poi-detail__back-btn::before {
  content: "←";
  font-size: 0.9rem;
}
.rlp-poi-detail__back-btn:hover {
  background: #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

/* Filterbar Wandertouren */
.rlp-filter-form--trails {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-end;
  margin: 0 0 1.8rem;
}

.rlp-filter-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

.rlp-filter-select {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  min-width: 140px;
  font-size: 0.9rem;
  outline: none;
}

/* Grid Layout */
.rlp-grid--trails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Card Basis */
.rlp-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rlp-card__image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.rlp-card__body {
  padding: 1.3rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}

/* Label + Titel */
.rlp-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.15rem;
}

.rlp-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
}

/* Meta-Blöcke */
.rlp-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #666;
  margin: 0.1rem 0;
}

.rlp-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.rlp-card__meta--difficulty {
  margin-top: 0.1rem;
  font-size: 0.9rem;
  color: #666;
}

.rlp-card__meta--elevation {
  margin-top: 0.05rem;
  font-size: 0.82rem;
  color: #888;
}

/* Teaser */
.rlp-card__excerpt {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  min-height: 3.2em; /* sorgt für gleich hohe Kartenreihen */
}

.rlp-card__button {
  align-self: flex-start;
  margin-top: auto;        /* schiebt den Button an das untere Ende der Card */
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: #d3166a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .15s;
}


.rlp-card__button:hover {
  background: #b31359;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
/* Filterbar bleibt wie vorher, nur kleine Kosmetik */
.rlp-filter-form--trails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: flex-end;
  margin: 0 0 1.8rem;
}

.rlp-filter-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

.rlp-filter-select {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  min-width: 130px;
  font-size: 0.9rem;
}

/* Grid + Cards wie schon vorgeschlagen */
.rlp-grid--trails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.rlp-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rlp-card__image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.rlp-card__body {
  padding: 1.3rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.rlp-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.1rem;
}

.rlp-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
}

/* Meta & Icons */
.rlp-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: #666;
  margin: 0.1rem 0;
}

.rlp-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rlp-card__meta--difficulty {
  margin-top: 0.15rem;
}

.rlp-card__meta--elevation {
  margin-top: 0.05rem;
  font-size: 0.83rem;
  color: #888;
}

/* Simple Icon-Stil (ohne externe Libs) */
.rlp-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  line-height: 1;
}

/* Entfernung: kleiner Punkt */
.rlp-icon--distance::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

/* Dauer: kleine Uhr */
.rlp-icon--duration {
  position: relative;
}
.rlp-icon--duration::before,
.rlp-icon--duration::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.rlp-icon--duration::before {
  width: 1px;
  height: 4px;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.rlp-icon--duration::after {
  width: 3px;
  height: 1px;
  top: 6px;
  left: 50%;
  transform: translateX(-10%);
}



/* Basis Card Layout (für alle Kategorien) */

.rlp-grid--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.rlp-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rlp-card__image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.rlp-card__body {
  padding: 1.3rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}

/* Kategorie-Label mit Typ-Icon */

.rlp-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Wandern */
.rlp-card__label--hike::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 2px solid #2b8a3e;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
}

/* Rad */
.rlp-card__label--bike::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #1c7ed6 inset, 10px 0 0 -8px #1c7ed6;
}

/* Unterkunft / Hotel */
.rlp-card__label--hotel::before {
  content: "";
  width: 14px;
  height: 10px;
  border-radius: 2px;
  border: 2px solid #7048e8;
  border-top: 4px solid #7048e8;
}

/* Gastro */
.rlp-card__label--gastro::before {
  content: "";
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 2px 2px;
  border: 2px solid #e8590c;
  border-top-color: transparent;
}

/* POI */
.rlp-card__label--poi::before {
  content: "";
  width: 10px;
  height: 14px;
  border-radius: 999px 999px 999px 999px / 999px 999px 40% 40%;
  border: 2px solid #0ca678;
}

/* Titel */

.rlp-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
}

/* Meta-Infos (Distanz, Dauer, Schwierigkeit, Höhenmeter etc.) */

.rlp-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: #666;
  margin: 0.12rem 0;
}

.rlp-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rlp-card__meta--elevation {
  font-size: 0.83rem;
  color: #888;
}

/* Generische rlp-icon Basis */

.rlp-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  line-height: 1;
}

/* Distanz (Punkt) */
.rlp-icon--distance::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

/* Dauer (Uhr) */
.rlp-icon--duration {
  position: relative;
}
.rlp-icon--duration::before,
.rlp-icon--duration::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.rlp-icon--duration::before {
  width: 1px;
  height: 4px;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.rlp-icon--duration::after {
  width: 3px;
  height: 1px;
  top: 6px;
  left: 50%;
  transform: translateX(-5%);
}

/* Schwierigkeit (kleiner Berg) */
.rlp-icon--difficulty {
  border-radius: 3px;
  border-color: currentColor;
  overflow: hidden;
}
.rlp-icon--difficulty::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, currentColor 0%, transparent 60%);
}

/* Höhenmeter */
.rlp-icon--up::before {
  content: '↑';
  font-size: 10px;
}
.rlp-icon--down::before {
  content: '↓';
  font-size: 10px;
}

/* Teaser & Button */

.rlp-card__excerpt {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  min-height: 3em;
}

.rlp-card__button {
  align-self: flex-start;
  margin-top: auto;        /* schiebt den Button an das untere Ende der Card */
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: #d3166a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .15s;
}

.rlp-card__button:hover {
  background: #b31359;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* Gemeinsamer Filter-Wrapper für alle RLP-Filter */

.rlp-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: flex-end;
  margin: 0 0 1.8rem;
}

/* optional: wenn du Trails/Gastro unterschiedlich paddings willst,
   kannst du .rlp-filter-form--trails oder --poi zusätzlich überschreiben */

.rlp-filter-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

.rlp-filter-select {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  min-width: 150px;
  font-size: 0.9rem;
  max-width: 260px;
}
.rlp-card {
  display: flex;
  flex-direction: column;
}

.rlp-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.rlp-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem; /* NEU: vertikaler Abstand zwischen Inhalt & Button */
}

/* Button bleibt unten */
.rlp-card__button {
  align-self: flex-start;
  margin-top: auto;
}
.rlp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.rlp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.rlp-card__image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.rlp-card__body {
  display: flex;
  flex-direction: column;
  padding: 14px 14px 16px;
  gap: 4px;
  flex: 1 1 auto;
}

.rlp-card__footer {
  margin-top: auto;
  padding-top: 8px;
}

.rlp-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #005caa;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
/* Gemeinsames Grid für alle RLP-Karten */
.rlp-grid,
.rlp-grid--cards,
.rlp-grid--trails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Basis Card */
.rlp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Bild oben */
.rlp-card__image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Body als Flex-Container, damit Footer nach unten kann */
.rlp-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 1.3rem 1.5rem 1.4rem;
  gap: 0.9rem;
}

/* Footer schiebt sich an das untere Ende */
.rlp-card__footer {
  margin-top: auto;
  padding-top: 0.4rem;
}

/* Button einheitlich */
.rlp-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: #d3166a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  font-weight: 500;
  transition: background .2s, transform .15s, box-shadow .15s;
}

.rlp-card__button:hover {
  background: #b31359;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
/* === Gastro-Grid (rlp_poi_filter) – Button unten bündig === */

/* Grid: Gastro nutzt .rlp-grid--cards */
.rlp-grid--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Jede Karte als Flex-Container */
.rlp-grid--cards .rlp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Bild oben */
.rlp-grid--cards .rlp-card__image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Body = Flex-Spalte, damit wir nach unten schieben können */
.rlp-grid--cards .rlp-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.1rem 1.3rem 1.3rem;
}

/* Footer nach unten */
.rlp-grid--cards .rlp-card__footer {
  margin-top: auto;
  padding-top: 0.4rem;
}

/* Button-Stil einheitlich */
.rlp-grid--cards .rlp-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: #d3166a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .15s;
}

.rlp-grid--cards .rlp-card__button:hover {
  background: #b31359;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
/* --- Gastro-Grid Fix: [rlp_poi_filter] Karten-Layout --- */

/* Grid für Gastro */
.rlp-grid--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Karte als Flex-Spalte */
.rlp-grid--cards .rlp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Body als Flex-Container */
.rlp-grid--cards .rlp-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.1rem 1.3rem 1.3rem;
  gap: 0.55rem;
}

/* Wenn du einen Footer-Wrapper nutzt */
.rlp-grid--cards .rlp-card__footer {
  margin-top: auto;
  padding-top: 0.35rem;
}

/* Button: sitzt immer unten (direkt im Body ODER im Footer) */
.rlp-grid--cards .rlp-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: #d3166a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  /* margin-top:auto wirkt wenn der Button direkt im Body steht;
     falls er im .rlp-card__footer steckt, übernimmt der Footer (s.o.). */
  transition: background .2s, transform .15s, box-shadow .15s;
}

.rlp-grid--cards .rlp-card__button:hover {
  background: #b31359;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
/* Gastro-Grid / rlp_poi_filter: Button unten ausrichten */

.rlp-grid--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.rlp-grid--cards .rlp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
}

.rlp-grid--cards .rlp-card__image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.rlp-grid--cards .rlp-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.1rem 1.3rem 1.3rem;
}

/* WICHTIG: Footer ist das Flex-Item, das nach unten geschoben wird */
.rlp-grid--cards .rlp-card__footer {
  margin-top: auto;
  padding-top: 0.4rem;
}

/* Button normal lassen, ohne margin-top:auto erzwingen */
.rlp-grid--cards .rlp-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: #d3166a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .15s;
}

.rlp-grid--cards .rlp-card__button:hover {
  background: #b31359;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.rlp-poi-detail__sidebar-box {
    background:#f5f5f5;
    padding:16px 18px;
    margin:0 0 18px;
    border-radius:12px;
    font-size:14px;
}

.rlp-poi-detail__sidebar-box h2 {
    margin:0 0 10px;
    font-size:18px;
    font-weight:600;
}

.rlp-tourinfo__row,
.rlp-rating-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    padding:4px 0;
    border-top:1px solid rgba(0,0,0,0.06);
}

.rlp-tourinfo__row:first-of-type,
.rlp-rating-row:first-of-type {
    border-top:none;
}

.rlp-tourinfo__label,
.rlp-rating-label {
    flex:1;
}

.rlp-tourinfo__value {
    white-space:nowrap;
    font-weight:500;
}

.rlp-rating__dot {
    display:inline-block;
    width:8px;
    height:8px;
    border-radius:50%;
    margin-left:3px;
    background:#ddd;
}

.rlp-rating__dot.is-active {
    background:#4b9d2a; /* Feratel-Grün anpassen */
}
.rlp-poi-detail__tourinfo {
    padding: 14px 18px;
    border-radius: 8px;
}

.rlp-tourinfo-title {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.rlp-tourinfo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 3px 0;
    font-size: 14px;
    line-height: 1.4;
}

.rlp-tourinfo-row--gpx {
    margin-top: 8px;
}

.rlp-tourinfo-row .rlp-icon {
    display: inline-block;
    width: 16px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
}

.rlp-tourinfo-text,
.rlp-tourinfo-gpx {
    display: inline-block;
}

.rlp-tourinfo-gpx {
    color: #008c95;
    text-decoration: none;
}
.rlp-tourinfo-gpx:hover {
    text-decoration: underline;
}
/* Alle eigenen Icon-Elemente */
.rlp-icon,
.rlp-icon::before,
.rlp-poi-detail__sidebar .rlp-icon,
.rlp-card__meta .rlp-icon {
    color: #098bcc;
    fill: #098bcc;
}

/* Falls du SVG-Icons nutzt */
.rlp-icon svg {
    fill: #098bcc;
    stroke: #098bcc;
}

.rlp-icon,
.rlp-icon::before,
.rlp-poi-detail__sidebar .rlp-icon,
.rlp-card__meta .rlp-icon {
    color: #098bcc;
    fill: #098bcc;
}

.rlp-icon svg {
    fill: #098bcc;
    stroke: #098bcc;
}

/* Mehr Luft zwischen Slider und Überschrift */
.rlp-poi-detail__hero {
    margin-bottom: 32px;  /* bei Bedarf z.B. 40px */
}

/* Optional: Label etwas dichter an die Überschrift rücken */
.rlp-card__label--hike {
    margin-bottom: 4px;
}
/* Map Wrapper */
.rlp-map-wrapper {
    position: relative;
}

/* Vergrößern-Button unten rechts auf der Karte */
.rlp-map-expand-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 4px 10px;
    font-size: 11px;
    line-height: 1.4;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #098bcc;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 5;
}

.rlp-map-expand-btn span {
    font-size: 14px;
}

/* Vollbildzustand */
.rlp-map-wrapper.rlp-map-fullscreen {
    position: fixed !important;
    inset: 10px;
    z-index: 9999;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* Schließen-Button im Vollbild */
.rlp-map-fullscreen-close {
    position: absolute;
    top: 10px;
    right: 14px;
    padding: 3px 10px;
    font-size: 12px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #098bcc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 10000;
}
.rlp-card__address {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #444;
}

.rlp-card__address-line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.rlp-card__address-text div {
    line-height: 1.3;
}

.rlp-card__address-name {
    font-weight: 600;
}

.rlp-icon.rlp-icon--location {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #098bcc;
    box-sizing: border-box;
    position: relative;
    margin-top: 2px;
}

.rlp-icon.rlp-icon--location::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #098bcc;
}

.rlp-open-badge{position:absolute;top:10px;left:10px;display:inline-flex;gap:.35rem;align-items:center;
  padding:.25rem .6rem;border-radius:999px;background:#e74c3c;color:#fff;font-size:12px;font-weight:600}
.rlp-open-badge.is-open{background:#2ecc71}
.rlp-card__image{position:relative;overflow:hidden}

/* Status-Badge in den Karten (Übersicht) */
.rlp-card__meta-item--status{
    display:inline-flex;
    align-items:center;
    padding:2px 6px;
    border-radius:999px;
    font-size:0.7rem;
    font-weight:400;
    border:1px solid transparent;
    margin-left:6px;
    text-transform:none;
    letter-spacing:0.03em;
}

/* geöffnet */
.rlp-card__meta-item--status-open{
    background:#e4f7e8;
    color:#146c2e;
    border-color:#b7e2c3;
}

/* geschlossen */
.rlp-card__meta-item--status-closed{
    background:#fde2e2;
    color:#a12727;
    border-color:#f5b5b5;
}

/* Statuszeile in der rechten Spalte (Detail) */
.rlp-poi-detail__oh-status{
    font-weight:600;
    margin-top:6px;
    margin-bottom:4px;
}

/* optional leichte Farb-Codierung im Detail (nicht Pflicht) */
.rlp-poi-detail__oh-status--open{
    color:#146c2e;
}
.rlp-poi-detail__oh-status--closed{
    color:#a12727;
}
