/* Wohnmobil-Bereich — Kupfer/Bernstein-Override auf yacht/styles.css als Basis */

:root {
  --c-gold: #b87333;
  --c-gold-2: #d49050;
  --c-gold-soft: #e8b88a;
}

/* Plakette-Badge: rundes Visual für Gas-Plakette */
.plakette-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-2));
  color: #1a1208;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.03em;
  border: 4px solid var(--c-gold-soft);
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.4);
  transform: rotate(-6deg);
  font-size: 12px;
  padding: 8px;
}
.plakette-badge strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}
.plakette-badge em {
  font-style: normal;
  font-size: 10px;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
}

/* Hero-Visual: statt Yacht-Bild ein Plakette-Block (skalierbar) */
.hero-plakette-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.08), rgba(243, 236, 224, 0.02));
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-gold-2);
  position: relative;
}
.hero-plakette-wrap .plakette-badge {
  width: 180px;
  height: 180px;
  font-size: 14px;
  border-width: 5px;
}
.hero-plakette-wrap .plakette-badge strong {
  font-size: 26px;
}
.hero-plakette-wrap .plakette-badge em {
  font-size: 12px;
}
.hero-plakette-wrap .plakette-context {
  text-align: center;
  color: var(--c-fg-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.hero-plakette-wrap .plakette-context strong {
  color: var(--c-gold-2);
  font-weight: 600;
}

/* Gas-CTA Block (auf Detail-Seiten) */
.gas-cta {
  background: rgba(184, 115, 51, 0.07);
  border-left: 3px solid var(--c-gold-2);
  padding: 28px 32px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-fg-soft);
}
.gas-cta strong { color: var(--c-gold-2); font-style: normal; }
