/*
Theme Name: reisewege24
Template: astra
Version: 2.1
Description: reisewege24.de – Pauschalreisen Vergleich
Author: reisewege24
*/

/* ═══════════════════════════════════════════════════════════
   RESET & VARIABLEN
═══════════════════════════════════════════════════════════ */
:root {
  --rw-primary:   #1565c0;   /* Logo-Blau */
  --rw-secondary: #1976d2;   /* helles Logo-Blau */
  --rw-accent:    #f5a623;   /* Logo-Orange/Gold */
  --rw-accent2:   #e65100;   /* CTA-Orange */
  --rw-dark:      #0d1b2e;   /* Nacht-Blau */
  --rw-light:     #f0f6ff;   /* leicht bläulich */
  --rw-gray:      #64748b;
  --rw-border:    #e2e8f0;
  --rw-white:     #ffffff;
  --rw-radius:    10px;
  --rw-radius-lg: 16px;
  --rw-shadow:    0 2px 16px rgba(13,59,110,.10);
  --rw-shadow-lg: 0 8px 40px rgba(13,59,110,.18);
  --rw-font:      'Open Sans', system-ui, -apple-system, sans-serif;
  --rw-max:       1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--rw-font);
  font-size: 16px;
  color: #1e293b;
  background: #fff;
  line-height: 1.7;
}

a { color: var(--rw-secondary); text-decoration: none; }
a:hover { color: var(--rw-primary); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* Astra-Reset: eigene Header/Footer überschreiben */
#ast-desktop-header, #ast-mobile-header,
.ast-above-header-wrap, .ast-below-header-wrap,
.site-footer, .ast-site-footer-wrap { display: none !important; }

#rw-main { display: block; }

/* ═══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════ */

/* Wrapper */
/* ── Astra & WP vollständig zurücksetzen ── */
#masthead, #ast-desktop-header, #ast-mobile-header,
.ast-above-header-wrap, .ast-primary-header-bar,
.ast-below-header-wrap, .site-header, .ast-site-header-wrap,
#colophon, .site-footer, .ast-site-footer-wrap { display:none !important; }

#page, .site, .ast-container,
.site-content, #content, .ast-content-layout-wrap { margin-top: 0 !important; padding-top: 0 !important; }

.rw-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  background: var(--rw-primary) !important;
  width: 100% !important;
  overflow: visible !important;
}
.rw-header.is-sticky { box-shadow: 0 3px 24px rgba(0,0,0,.35); }

/* WordPress-Adminbar-Kompensation */
body.admin-bar .rw-header { top: 32px !important; }
/* body.admin-bar padding wird von WP automatisch gehandelt */
@media screen and (max-width: 782px) {
  body.admin-bar .rw-header { top: 46px !important; }
/* mobile admin-bar – WP handelt das */
}

/* Container */
.rw-nav-container {
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Reihe 1 */
.rw-nav-row1 { border-bottom: 1px solid rgba(255,255,255,.1); }
.rw-nav-row1 .rw-nav-container { height: 72px; }

/* Reihe 2 */
.rw-nav-row2 { background: rgba(0,0,0,.15); }
.rw-nav-row2 .rw-nav-container { height: 42px; }

/* Logo */
.rw-logo { flex-shrink: 0; line-height: 0; text-decoration: none; }
.rw-logo img { height: 52px; width: auto; display: block; transition: height .35s ease; }

/* Nav-Listen */
.rw-nav-primary,
.rw-nav-secondary {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
  align-items: center;
  flex-wrap: nowrap;
}
.rw-nav-primary { flex: 1; }

/* Nav-Items */
.rw-ni { position: relative; }
.rw-ni > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  color: rgba(255,255,255,.9);
  font-size: .87rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s;
  line-height: 1;
  letter-spacing: .01em;
}
.rw-ni > a:hover,
.rw-ni:hover > a,
.rw-ni.open > a {
  background: rgba(255,255,255,.13);
  color: #fff;
  text-decoration: none;
}
.rw-ni.active > a {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.rw-arr {
  font-size: .7rem;
  opacity: .7;
  transition: transform .2s;
  display: inline-block;
}
.rw-ni.open .rw-arr,
.rw-ni:hover .rw-arr { transform: rotate(180deg); opacity: 1; }

/* Last Minute Button */
.rw-lm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8580a;
  color: #fff !important;
  padding: 7px 20px;
  border-radius: 22px;
  font-weight: 700;
  font-size: .87rem;
  text-decoration: none !important;
  transition: background .18s;
  white-space: nowrap;
}
.rw-lm-btn:hover { background: #c94800; text-decoration: none !important; }

/* ── DROPDOWN ── */
.rw-drop {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 106px; /* 64 + 42 */
  background: #fff;
  border-top: 3px solid var(--rw-accent);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  z-index: 9100;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
}
.rw-ni.open .rw-drop,
.rw-ni:hover .rw-drop { display: block; animation: dropIn .16s ease; }

/* Unsichtbare Brücke: überbrückt den Gap zwischen Nav und Dropdown */
.rw-ni { position: relative; }
.rw-ni::after {
  content: '';
  position: fixed;
  top: 72px; /* unterkante row1 */
  height: 44px; /* row2 hoehe */
  left: 0; right: 0;
  display: none;
  z-index: 9050;
}
.rw-ni:hover::after { display: block; }


/* Unsichtbare Brücke zwischen Nav-Link und Dropdown – verhindert Gap */
.rw-ni::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 24px; /* überbrückt den Abstand */
  background: transparent;
  display: none;
}
.rw-ni:hover::after { display: block; }


@keyframes dropIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rw-drop-inner {
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 22px 28px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 4px;
}

/* Dropdown-Items */
.rw-di {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #1e293b;
  text-decoration: none;
  font-size: .88rem;
  transition: background .14s;
}
.rw-di:hover { background: var(--rw-light); color: var(--rw-primary); text-decoration: none; }
.rw-di-flag  { font-size: 1.25rem; flex-shrink: 0; line-height: 1; }
.rw-di-name  { flex: 1; font-weight: 500; line-height: 1.25; }
.rw-di-price {
  font-size: .72rem; font-weight: 700; color: var(--rw-accent2);
  background: #fff3ee; padding: 2px 7px; border-radius: 10px; white-space: nowrap;
}

/* ── BURGER ── */
.rw-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 7px;
  cursor: pointer;
  padding: 8px 9px;
  margin-left: auto;
  flex-shrink: 0;
}
.rw-burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: .28s; }
.rw-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.rw-burger.is-open span:nth-child(2) { opacity: 0; }
.rw-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE MENU ── */
.rw-mob-wrap {
  background: var(--rw-dark);
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding: 4px 0 32px;
  border-top: 2px solid var(--rw-accent);
}
.rw-mob-wrap[hidden] { display: none !important; }
.rw-mob-g { padding: 0 20px 10px; }
.rw-mob-gt {
  font-size: .69rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--rw-accent); padding: 12px 0 7px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.rw-mob-gl { display: flex; flex-wrap: wrap; gap: 6px; }
.rw-mob-gl a {
  color: rgba(255,255,255,.82); font-size: .82rem;
  background: rgba(255,255,255,.08); padding: 5px 14px; border-radius: 20px;
  text-decoration: none;
}
.rw-mob-gl a:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Spacer: 80 + 48 = 128px default, 56 + 36 = 92px scrolled */
body { padding-top: 128px !important; }
/* body.admin-bar padding – WP handles margin-top:32px automatically */

/* Responsive: unter 960px Burger zeigen */
@media (max-width: 960px) {
  .rw-nav-primary,
  .rw-nav-secondary { display: none; }
  .rw-burger { display: flex; }
  .rw-nav-row2 { display: none; }
  body { padding-top: 72px !important; }
  .rw-header-row1 .rw-header-inner { height: 70px; }
.rw-header.is-sticky .rw-nav-row1 .rw-nav-container { height: 52px; }
  .rw-drop { top: 80px; max-height: calc(100vh - 80px); }
  .rw-header.is-sticky .rw-drop { top: 56px; max-height: calc(100vh - 56px); }
}



.rw-header.is-sticky .rw-nav-row1 .rw-nav-container { height: 52px; }
.rw-header.is-sticky .rw-nav-row2 .rw-nav-container { height: 32px; }
.rw-header.is-sticky .rw-logo img { height: 36px; }
.rw-header.is-sticky .rw-nav-link { font-size: .82rem; padding: 5px 10px; }
.rw-header.is-sticky .rw-drop { top: 84px; max-height: calc(100vh - 84px); }

/* ── Weißen Gap unter Header vollständig entfernen ── */
#page, #content, .site-content,
.ast-container, .ast-content-layout-wrap,
.ast-single-post-order, .hentry, .entry-content,
.page, .post, article, .wp-block-group,
main#rw-main > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* ═══════════════════════════════════════════════════════════
   HERO / SLIDER
═══════════════════════════════════════════════════════════ */
.rw-hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--rw-dark);
}
.rw-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.rw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.78) 0%, rgba(10,22,40,.35) 60%, transparent 100%);
}
.rw-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.rw-hero-flag { font-size: 3rem; line-height: 1; margin-bottom: 4px; }
.rw-hero-title { font-size: 3.8rem; font-weight: 900; color: #fff; line-height: 1.05; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
.rw-hero-sub { font-size: 1.2rem; color: rgba(255,255,255,.88); max-width: 640px; }
.rw-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.rw-badge {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 7px 16px;
  border-radius: 22px;
  font-size: .88rem;
  font-weight: 600;
}
.rw-hero-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rw-accent2);
  color: #fff;
  padding: 14px 32px;
  border-radius: 34px;
  font-weight: 800;
  font-size: 1.3rem;
  width: fit-content;
  box-shadow: 0 4px 24px rgba(232,88,10,.5);
}

/* ═══════════════════════════════════════════════════════════
   CHECK24 WIDGET SECTION
═══════════════════════════════════════════════════════════ */
.rw-widget-section {
  background: linear-gradient(135deg, var(--rw-primary) 0%, var(--rw-secondary) 100%);
  padding: 40px 24px;
}
.rw-widget-wrap {
  max-width: var(--rw-max);
  margin: 0 auto;
}
.rw-widget-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rw-widget-sub {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-bottom: 20px;
}
.rw-widget-box {
  background: #fff;
  border-radius: var(--rw-radius-lg);
  padding: 24px;
  box-shadow: var(--rw-shadow-lg);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   SEITEN-LAYOUT
═══════════════════════════════════════════════════════════ */
.rw-page-wrap {
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 0 24px;
}
.rw-section { padding: 60px 0; }
.rw-section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--rw-primary);
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 14px;
}
.rw-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--rw-accent);
  border-radius: 2px;
}

/* Intro */
.rw-intro {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.rw-intro-text p { margin-bottom: 16px; font-size: 1.05rem; color: #334155; }
.rw-intro-img img {
  width: 100%;
  border-radius: var(--rw-radius-lg);
  box-shadow: var(--rw-shadow-lg);
}

/* Regionen */
.rw-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rw-region-card {
  background: #fff;
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
  box-shadow: var(--rw-shadow);
  transition: transform .25s, box-shadow .25s;
}
.rw-region-card:hover { transform: translateY(-4px); box-shadow: var(--rw-shadow-lg); }
.rw-region-card img { width: 100%; height: 220px; object-fit: cover; }
.rw-region-body { padding: 18px 20px; }
.rw-region-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rw-accent2);
  margin-bottom: 6px;
}
.rw-region-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--rw-primary); margin-bottom: 8px; }
.rw-region-body p { font-size: .88rem; color: var(--rw-gray); }

/* Attraktionen */
.rw-attractions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rw-attr-card {
  background: #fff;
  border-radius: var(--rw-radius);
  overflow: hidden;
  box-shadow: var(--rw-shadow);
  transition: transform .25s;
}
.rw-attr-card:hover { transform: translateY(-3px); }
.rw-attr-card img { width: 100%; height: 180px; object-fit: cover; }
.rw-attr-body { padding: 14px 16px; }
.rw-attr-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--rw-secondary);
  margin-bottom: 4px;
}
.rw-attr-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #1e293b; }
.rw-attr-body p { font-size: .83rem; color: var(--rw-gray); line-height: 1.5; }

/* Wetter-Tabelle */
.rw-section-bg { background: var(--rw-light); }
.rw-weather {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.rw-weather-month {
  text-align: center;
  padding: 12px 6px;
  border-radius: var(--rw-radius);
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.rw-wm-name { font-size: .75rem; font-weight: 700; color: var(--rw-gray); text-transform: uppercase; }
.rw-wm-temp { font-size: 1.15rem; font-weight: 800; margin: 4px 0; color: var(--rw-primary); }
.rw-wm-desc { font-size: .7rem; color: var(--rw-gray); line-height: 1.3; }
.rw-weather-month.best { background: #e6f7ee; }
.rw-weather-month.best .rw-wm-temp { color: #15803d; }
.rw-weather-month.hot { background: #fff7ed; }
.rw-weather-month.hot .rw-wm-temp { color: #c2410c; }
.rw-weather-month.poor { background: #f8f8f8; }
.rw-weather-month.poor .rw-wm-temp { color: #94a3b8; }

/* Infobox + Tips */
.rw-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.rw-infobox {
  background: var(--rw-primary);
  color: #fff;
  border-radius: var(--rw-radius-lg);
  padding: 28px;
}
.rw-infobox h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--rw-accent); }
.rw-infobox p { font-size: .9rem; opacity: .9; }
.rw-tips {
  background: #fff;
  border-radius: var(--rw-radius-lg);
  padding: 28px;
  box-shadow: var(--rw-shadow);
}
.rw-tips h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--rw-primary); }
.rw-tips ul { list-style: none; }
.rw-tips li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: .9rem;
  border-bottom: 1px solid var(--rw-border);
}
.rw-tips li:last-child { border: none; }
.rw-tips li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }

/* FAQ */
.rw-faq { max-width: 100%; margin: 0 auto; }
.rw-faq-item {
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.rw-faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--rw-primary);
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.rw-faq-q:hover { background: var(--rw-light); }
.rw-faq-q::after { content: '+'; font-size: 1.3rem; color: var(--rw-accent); flex-shrink: 0; transition: transform .2s; }
.rw-faq-item.open .rw-faq-q::after { content: '−'; }
.rw-faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: .9rem;
  color: var(--rw-gray);
  background: var(--rw-light);
}
.rw-faq-item.open .rw-faq-a { display: block; }

/* SEO-Texte */
.rw-seo-block { width: 100%; max-width: 100%; margin-bottom: 40px; }
.rw-seo-block h2 { font-size: 1.5rem; font-weight: 700; color: var(--rw-primary); margin-bottom: 14px; }
.rw-seo-block p { font-size: .95rem; color: #334155; line-height: 1.8; }

/* Breadcrumb */
.rw-breadcrumb {
  padding: 12px 24px;
  background: var(--rw-light);
  border-bottom: 1px solid var(--rw-border);
  font-size: .82rem;
  color: var(--rw-gray);
  max-width: 100%;
}
.rw-breadcrumb a { color: var(--rw-secondary); }
.rw-breadcrumb span { margin: 0 6px; }


/* ═══════════════════════════════════════════════════════════
   BRAND-ICON HIGHLIGHT STRIP
═══════════════════════════════════════════════════════════ */
.rw-brand-strip {
  background: linear-gradient(135deg, var(--rw-primary) 0%, var(--rw-secondary) 100%);
  border-top: 3px solid var(--rw-accent);
  border-bottom: 3px solid var(--rw-accent);
  padding: 20px 32px;
}
.rw-brand-strip-inner {
  max-width: var(--rw-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.rw-brand-icon {
  height: 64px;
  width: 64px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.rw-brand-strip-text {
  flex: 1;
  color: #fff;
  font-size: 1rem;
  min-width: 200px;
}
.rw-brand-strip-text strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rw-accent);
  display: block;
  margin-bottom: 2px;
}
.rw-brand-strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rw-brand-strip-badges span {
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.25);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   STARTSEITE
═══════════════════════════════════════════════════════════ */
.rw-hp-hero {
  position: relative;
  height: 640px;
  background: linear-gradient(135deg, #0a1628 0%, #0d3b6e 60%, #1a5fa8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.rw-hp-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600') center/cover;
  opacity: .25;
}
.rw-hp-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  width: 100%;
}
.rw-hp-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.rw-hp-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,.85);
  max-width: 680px;
  margin: 0 auto 32px;
}
.rw-hp-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.rw-btn-primary {
  background: var(--rw-accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,160,0,.4);
}
.rw-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,0,.5); text-decoration: none; color: #fff; }
.rw-btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  transition: background .2s;
}
.rw-btn-secondary:hover { background: rgba(255,255,255,.2); text-decoration: none; color: #fff; }

.rw-hp-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.rw-hp-stat-num { font-size: 2rem; font-weight: 800; color: var(--rw-accent); }
.rw-hp-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; }

/* Destinations Grid */
.rw-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rw-dest-card {
  position: relative;
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
  box-shadow: var(--rw-shadow);
  aspect-ratio: 3/2;
  transition: transform .25s, box-shadow .25s;
  display: block;
}
.rw-dest-card:hover { transform: translateY(-5px); box-shadow: var(--rw-shadow-lg); text-decoration: none; }
.rw-dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.rw-dest-card:hover img { transform: scale(1.07); }
.rw-dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, rgba(10,22,40,.3) 50%, transparent 100%);
}
.rw-dest-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px 22px;
  color: #fff;
}
.rw-dest-card-flag { font-size: 2rem; line-height: 1; margin-bottom: 4px; }
.rw-dest-card-name {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.rw-dest-card-price {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: var(--rw-accent2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 22px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px rgba(232,88,10,.4);
}
.rw-dest-card-price::before { content: 'ab '; font-size: .8rem; font-weight: 600; opacity: .9; }

/* USP-Streifen */
.rw-usp-bar {
  background: var(--rw-primary);
  padding: 32px 24px;
}
.rw-usp-inner {
  max-width: var(--rw-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.rw-usp-item { color: #fff; }
.rw-usp-icon { font-size: 2rem; margin-bottom: 8px; }
.rw-usp-title { font-size: .95rem; font-weight: 700; }
.rw-usp-text { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Kategorien Tiles */
.rw-cat-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rw-cat-tile {
  background: #fff;
  border-radius: var(--rw-radius-lg);
  padding: 28px;
  box-shadow: var(--rw-shadow);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--rw-border);
}
.rw-cat-tile:hover { transform: translateY(-3px); box-shadow: var(--rw-shadow-lg); text-decoration: none; }
.rw-cat-tile-icon { font-size: 2.5rem; margin-bottom: 12px; }
.rw-cat-tile h3 { font-size: 1.15rem; font-weight: 700; color: var(--rw-primary); margin-bottom: 8px; }
.rw-cat-tile p { font-size: .88rem; color: var(--rw-gray); margin-bottom: 16px; }
.rw-cat-tile-links { display: flex; flex-wrap: wrap; gap: 6px; }
.rw-cat-tile-links a {
  font-size: .78rem;
  color: var(--rw-secondary);
  background: var(--rw-light);
  padding: 3px 10px;
  border-radius: 12px;
}
.rw-cat-tile-links a:hover { background: var(--rw-secondary); color: #fff; text-decoration: none; }

/* Content Sections */
.rw-content-section {
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 60px 24px;
}
.rw-content-section p { font-size: 1rem; color: #334155; margin-bottom: 16px; line-height: 1.8; }
.rw-content-section h2 { font-size: 1.7rem; font-weight: 700; color: var(--rw-primary); margin: 32px 0 16px; }
.rw-content-section h3 { font-size: 1.25rem; font-weight: 700; color: var(--rw-dark); margin: 24px 0 12px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.rw-footer {
  background: var(--rw-dark);
  color: rgba(255,255,255,.75);
  padding: 48px 0 0;
  margin-top: 80px;
}

/* Brand zentriert oben */
.rw-footer-brand-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.rw-footer-brand-row img {
  height: 110px;
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,.4));
  margin-bottom: 6px;
}
.rw-footer-brand-text {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  margin-top: 10px;
}

/* Haupt-Grid: 3 Spalten */
.rw-footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 40px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Spalten-Styling */
.rw-footer-col h4 {
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--rw-accent);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
.rw-footer-col ul { list-style: none; columns: 2; column-gap: 12px; }
.rw-footer-col li { margin-bottom: 5px; break-inside: avoid; }
.rw-footer-col a {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: left;
  justify-content: flex-start;
}
.rw-footer-col a:hover { color: #fff; text-decoration: none; }
.rw-footer-col a .rw-fl { font-size: .75rem; flex-shrink: 0; }

.rw-footer-bottom {
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.rw-footer-bottom a { color: rgba(255,255,255,.5); }
.rw-footer-bottom a:hover { color: #fff; text-decoration: none; }
.rw-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }



/* ═══════════════════════════════════════════════════════════
   TOP-ANGEBOTE (ltur-Style)
═══════════════════════════════════════════════════════════ */
.rw-section-sub {
  text-align: center;
  color: var(--rw-gray);
  font-size: 1rem;
  margin-bottom: 24px;
}
.rw-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--rw-max);
  margin: 0 auto;
}
.rw-offer-card {
  background: #fff;
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
  box-shadow: var(--rw-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
}
.rw-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rw-shadow-lg);
  text-decoration: none;
}
.rw-offer-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.rw-offer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.rw-offer-card:hover .rw-offer-img-wrap img { transform: scale(1.06); }
.rw-offer-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--rw-accent2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 24px;
  font-size: .78rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(232,88,10,.5);
}
.rw-offer-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.rw-offer-region {
  font-size: .78rem;
  color: var(--rw-gray);
  font-weight: 600;
}
.rw-offer-hotel {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--rw-primary);
  margin: 2px 0 4px;
  line-height: 1.2;
}
.rw-offer-meta {
  font-size: .82rem;
  color: var(--rw-gray);
}
.rw-offer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rw-border);
}
.rw-offer-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rw-offer-rating-mark {
  background: #1976d2;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  width: fit-content;
}
.rw-offer-bewertungen {
  font-size: .72rem;
  color: var(--rw-gray);
}
.rw-offer-price {
  background: var(--rw-accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  box-shadow: 0 2px 10px rgba(245,166,35,.3);
}
.rw-offer-price small { font-size: .72rem; opacity: .9; font-weight: 600; }
.rw-offer-price strong { font-size: 1.4rem; font-weight: 900; }
.rw-offer-cta {
  font-size: .68rem;
  font-weight: 700;
  margin-top: 2px;
  opacity: .95;
}
@media (max-width: 768px) {
  .rw-offers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .rw-offers-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SEO-Block mit Bild ── */
.rw-seo-block { margin-bottom: 32px; }
.rw-seo-block--img {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: var(--rw-radius-lg);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
/* Wechsellayout: ungerade = Bild links, gerade = Bild rechts */
.rw-seo-block--img:nth-of-type(even) {
  grid-template-columns: 1fr 380px;
}
.rw-seo-block--img:nth-of-type(even) .rw-seo-text { order: -1; }
.rw-seo-img {
  width: 100%;
  border-radius: var(--rw-radius);
  object-fit: cover;
  height: 240px;
  box-shadow: var(--rw-shadow);
}
.rw-seo-text h2 { font-size: 1.35rem; margin-bottom: 10px; color: var(--rw-primary); }
.rw-seo-text p { color: var(--rw-gray); line-height: 1.7; }
@media (max-width: 768px) {
  .rw-seo-block--img,
  .rw-seo-block--img:nth-of-type(even) {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .rw-seo-block--img:nth-of-type(even) .rw-seo-text { order: 0; }
}

/* ═══════════════════════════════════════════════════════════
   ANGEBOTS-DETAILSEITE
═══════════════════════════════════════════════════════════ */

/* Container ohne oberen Abstand */
.rw-offer-detail {
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 0 24px 24px;
}

/* Full-Width Hero direkt unter der Navigation
   - 100vw + negativem horizontalem margin = volle Bildschirmbreite
   - body.rw-detail-page padding-top: 0 → Hero startet unter dem fixierten Header
   - Header (112px) bleibt fixed sichtbar darüber
*/
body.rw-detail-page {
  padding-top: 0 !important;
}
body.rw-detail-page #rw-main,
body.rw-detail-page #page,
body.rw-detail-page #content,
body.rw-detail-page .site-content,
body.rw-detail-page .ast-container,
body.rw-detail-page .ast-content-layout-wrap,
body.rw-detail-page .entry-content,
body.rw-detail-page main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.rw-detail-page .rw-od-hero-wrap {
  margin-top: 112px;
}
body.rw-detail-page.admin-bar .rw-od-hero-wrap {
  margin-top: 144px;
}
.rw-od-hero-wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 32px;
  padding: 0;
}
.rw-od-hero {
  position: relative;
  height: 520px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}
.rw-od-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rw-od-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,27,46,.4) 0%, rgba(13,27,46,0) 30%, rgba(13,27,46,.85) 100%);
}
.rw-od-hero-inner {
  position: relative;
  height: 100%;
  max-width: var(--rw-max);
  margin: 0 auto;
  padding: 24px 24px 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Breadcrumb im Hero (oben links) */
.rw-od-breadcrumb {
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.85) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.rw-od-breadcrumb a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
}
.rw-od-breadcrumb a:hover { text-decoration: underline; }
.rw-od-breadcrumb span:not([class]) { color: rgba(255,255,255,.55); }

/* Hero-Content (unten links) */
.rw-od-hero-content {
  position: relative;
  color: #fff;
}
.rw-od-region {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  margin-bottom: 10px;
}
.rw-od-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 18px 0 !important;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.rw-od-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rw-od-meta span {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  padding: 7px 16px;
  border-radius: 22px;
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* Zweispalten-Layout */
.rw-od-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

/* Inhalt links */
.rw-od-content {
  min-width: 0;
}
.rw-od-prose h2 {
  font-size: 1.6rem;
  color: var(--rw-primary);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rw-accent);
}
.rw-od-prose h2:first-child { margin-top: 0; }
.rw-od-prose p {
  font-size: 1rem;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 14px;
}
.rw-od-prose ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.rw-od-prose ul li {
  padding: 10px 16px 10px 36px;
  background: var(--rw-light);
  border-radius: var(--rw-radius);
  margin-bottom: 8px;
  position: relative;
  font-size: .95rem;
}
.rw-od-prose ul li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  color: var(--rw-accent);
  font-weight: 800;
}

/* Sticky-Sidebar rechts */
.rw-od-sidebar { position: sticky; top: 130px; }
.rw-od-pricebox {
  background: #fff;
  border-radius: var(--rw-radius-lg);
  box-shadow: var(--rw-shadow-lg);
  padding: 28px 24px;
  border: 2px solid var(--rw-accent);
}
.rw-od-pb-label {
  font-size: .82rem;
  color: var(--rw-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.rw-od-pb-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--rw-accent2);
  line-height: 1;
  margin: 6px 0 4px;
}
.rw-od-pb-price small { font-size: 1.4rem; }
.rw-od-pb-meta {
  font-size: .85rem;
  color: var(--rw-gray);
  margin-bottom: 20px;
}
.rw-od-pb-cta {
  display: block;
  background: linear-gradient(135deg, var(--rw-accent2), #ff8c33);
  color: #fff !important;
  text-align: center;
  padding: 16px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(232,88,10,.45);
  transition: transform .15s, box-shadow .15s;
}
.rw-od-pb-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,88,10,.6);
  text-decoration: none;
}
.rw-od-pb-trust {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rw-border);
  font-size: .85rem;
  color: var(--rw-gray);
}
.rw-od-pb-trust div { margin-bottom: 6px; }

/* Widget-Sektion */
.rw-od-widget-section {
  background: var(--rw-light);
  margin: 0 -24px;
  padding: 40px 24px;
  border-radius: var(--rw-radius-lg);
}
.rw-od-widget-title {
  font-size: 1.8rem;
  color: var(--rw-primary);
  text-align: center;
  margin-bottom: 8px;
}
.rw-od-widget-sub {
  text-align: center;
  color: var(--rw-gray);
  margin-bottom: 24px;
}

.rw-od-back {
  margin-top: 32px;
  text-align: center;
}
.rw-od-back a {
  color: var(--rw-primary);
  font-weight: 600;
  text-decoration: none;
}
.rw-od-back a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 968px) {
  .rw-od-grid { grid-template-columns: 1fr; }
  .rw-od-sidebar { position: static; }
  .rw-od-hero { height: 380px; }
  .rw-od-hero-inner { padding: 16px 20px 24px; }
  .rw-od-title { font-size: 1.9rem !important; }
  .rw-od-region { font-size: .9rem; }
  .rw-od-meta span { font-size: .78rem; padding: 5px 12px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .rw-dest-grid { grid-template-columns: repeat(3, 1fr); }
  .rw-footer-top { grid-template-columns: repeat(3, 1fr); }
  .rw-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .rw-main-nav { display: none; }
  .rw-burger { display: flex; }
  .rw-hero-title { font-size: 2.2rem; }
  .rw-hp-hero h1 { font-size: 2.4rem; }
  .rw-intro { grid-template-columns: 1fr; }
  .rw-intro-img { order: -1; }
  .rw-regions, .rw-attractions { grid-template-columns: 1fr 1fr; }
  .rw-weather { grid-template-columns: repeat(6, 1fr); }
  .rw-info-grid { grid-template-columns: 1fr; }
  .rw-usp-inner { grid-template-columns: repeat(2, 1fr); }
  .rw-cat-tiles { grid-template-columns: 1fr 1fr; }
  .rw-dest-grid { grid-template-columns: repeat(2, 1fr); }
  .rw-hp-stats { gap: 24px; }
}
@media (max-width: 600px) {
  .rw-hero { height: 440px; }
  .rw-hero-title { font-size: 1.8rem; }
  .rw-hp-hero h1 { font-size: 1.9rem; }
  .rw-regions, .rw-attractions { grid-template-columns: 1fr; }
  .rw-weather { grid-template-columns: repeat(4, 1fr); }
  .rw-cat-tiles { grid-template-columns: 1fr; }
  .rw-dest-grid { grid-template-columns: 1fr 1fr; }
  .rw-footer-top { grid-template-columns: 1fr 1fr; }
  .rw-hp-stats { flex-wrap: wrap; gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   VARIANT-TABS (Pauschal / Lastminute / All Inclusive / Frühbucher)
   ═══════════════════════════════════════════════════════════ */
.rw-variant-tabs {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}
.rw-variant-tabs-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.rw-variant-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  color: #475569;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  transition: all .15s;
}
.rw-variant-tab:hover {
  border-color: #1565c0;
  color: #1565c0;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(21,101,192,.12);
}
.rw-variant-tab.is-active {
  background: #1565c0;
  color: #fff;
  border-color: #1565c0;
  cursor: default;
}
.rw-variant-tab.is-active:hover {
  transform: none;
  box-shadow: none;
}
.rw-variant-tab-icon { font-size: 1rem; }

@media (max-width: 700px) {
  .rw-variant-tabs-wrap { padding: 0 12px; gap: 6px; }
  .rw-variant-tab { padding: 8px 14px; font-size: .85rem; }
  .rw-variant-tab-label { display: inline; }
}

/* Variant-Intro (statisches Default-Intro auf Sub-Seiten) */
.rw-variant-intro p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1f2937;
  max-width: 880px;
}

/* FAQ Script */

/* ═══════════════════════════════════════════════════════════
   KLIMA-SECTION (Phase 2 / Iter. 1)
   ═══════════════════════════════════════════════════════════ */
.rw-climate-section { padding-top: 8px; }
.rw-climate-intro {
  max-width: 880px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #1f2937;
  margin: 0 0 18px 0;
}
.rw-climate-best {
  display: inline-block;
  background: #fff7e6;
  border-left: 4px solid #f5a623;
  padding: 10px 16px;
  border-radius: 4px;
  margin: 0 0 22px 0;
  font-size: .98rem;
  color: #1f2937;
}
.rw-climate-chart-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 12px 8px;
  margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.rw-climate-chart { max-width: 100%; }

.rw-climate-table-toggle {
  margin: 0 0 22px 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fafafa;
}
.rw-climate-table-toggle > summary {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 600;
  color: #1565c0;
  font-size: .95rem;
  user-select: none;
  list-style: none;
}
.rw-climate-table-toggle > summary::before {
  content: "▶ ";
  display: inline-block;
  margin-right: 6px;
  font-size: .75rem;
  transition: transform .2s;
}
.rw-climate-table-toggle[open] > summary::before { transform: rotate(90deg); }
.rw-climate-table-scroll {
  overflow-x: auto;
  padding: 0 16px 16px;
}
.rw-climate-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: .9rem;
}
.rw-climate-table th,
.rw-climate-table td {
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}
.rw-climate-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #1f2937;
  position: sticky;
  top: 0;
}
.rw-climate-table td:first-child { text-align: left; font-weight: 500; }
.rw-climate-table tbody tr:hover { background: #f8fafc; }

.rw-rec-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.rw-rec-ideal       { background: #dcfce7; color: #166534; }
.rw-rec-gut         { background: #fef3c7; color: #92400e; }
.rw-rec-durchwachsen{ background: #f1f5f9; color: #475569; }

.rw-climate-seasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 18px 0;
}
.rw-climate-season-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #1565c0;
  border-radius: 8px;
  padding: 14px 18px;
}
.rw-climate-season-card:nth-child(2) { border-left-color: #f5a623; }
.rw-climate-season-card:nth-child(3) { border-left-color: #0f7b5e; }
.rw-climate-season-label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 4px;
}
.rw-climate-season-months {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 6px;
}
.rw-climate-season-reason {
  margin: 0;
  font-size: .92rem;
  color: #1f2937;
  line-height: 1.5;
}
.rw-climate-note {
  font-size: .82rem;
  color: #6b7280;
  font-style: italic;
  margin: 0;
}

@media (max-width: 700px) {
  .rw-climate-seasons { grid-template-columns: 1fr; }
}
