/* =========================================================
   arni-womo.de – Wohnmobilübersicht
   Datei: wohnmobile.css

   Voraussetzung:
   fahrzeugseiten.css wird vor dieser Datei geladen.
   Dadurch stehen die zentralen --aw-Variablen zur Verfügung.
   ========================================================= */


/* =========================================================
   1. Übersichtsbereich
   ========================================================= */

.wohnmobile-overview-section {
  width: 100%;

  padding: 44px 0 52px 0;

  background: var(--aw-light);
  border-radius: var(--aw-radius-section);

  color: var(--aw-text);
  box-sizing: border-box;
  overflow: hidden;
}

.wohnmobile-overview-inner {
  width: 100%;
  max-width: var(--aw-inner-max);
  margin: 0 auto;
  padding: 0 var(--aw-inner-padding);

  box-sizing: border-box;
}


/* =========================================================
   2. Abschnittsüberschrift
   ========================================================= */

.wohnmobile-overview-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.wohnmobile-overview-header h2 {
  margin: 0 0 14px 0;

  color: var(--aw-blue);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 800;
}

.wohnmobile-overview-header p {
  max-width: 860px;
  margin: 0 auto;

  color: var(--aw-text);
  font-size: 17px;
  line-height: 1.65;
}


/* =========================================================
   3. Kartenraster
   ========================================================= */

.wohnmobile-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}


/* =========================================================
   4. Fahrzeugkarte
   ========================================================= */

.wohnmobile-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;

  background: var(--aw-white);
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-card);
  box-shadow: var(--aw-shadow);

  box-sizing: border-box;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.wohnmobile-card:hover {
  transform: translateY(-3px);

  border-color: rgba(232, 119, 34, 0.30);
  box-shadow: 0 14px 34px rgba(23, 48, 79, 0.13);
}


/* =========================================================
   5. Fahrzeugbild
   ========================================================= */

.wohnmobile-card-image-link {
  display: block;
  width: 100%;
  overflow: hidden;

  background: var(--aw-white);
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.wohnmobile-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;

  object-fit: cover;

  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;

  transition: transform 0.35s ease;
}

.wohnmobile-card:hover .wohnmobile-card-image {
  transform: scale(1.04);
}


/* =========================================================
   6. Karteninhalt
   ========================================================= */

.wohnmobile-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 28px 26px 26px;
  box-sizing: border-box;
}

.wohnmobile-card-content h3 {
  margin: 0 0 10px 0;

  color: var(--aw-blue);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.wohnmobile-card-description {
  margin: 0 0 24px 0;

  color: var(--aw-text);
  font-size: 16px;
  line-height: 1.65;
}


/* =========================================================
   7. Dynamische Fahrzeugdaten
   ========================================================= */

.wohnmobile-card-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  margin-top: auto;
  margin-bottom: 24px;
}

.wohnmobile-card-fact {
  min-width: 0;
  padding: 16px 12px;

  background: var(--aw-light);
  border: 1px solid var(--aw-border);
  border-radius: 14px;

  text-align: center;
  box-sizing: border-box;
}

.wohnmobile-card-fact .fact-label {
  display: block;
  margin: 0 0 6px 0;

  color: var(--aw-blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wohnmobile-card-fact .fact-value {
  display: block;
  margin: 0;

  color: var(--aw-orange);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;

  overflow-wrap: anywhere;
}

.wohnmobile-card-fact .fact-value.aw-auto-filled {
  color: var(--aw-orange);
}


/* =========================================================
   8. Button
   ========================================================= */

.wohnmobile-overview-section .wohnmobile-card-button {
  width: 100%;
  margin: 0;
}

.wohnmobile-overview-section .wohnmobile-card-button a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 48px;
  padding: 14px 28px;

  background: var(--aw-orange);
  color: var(--aw-white);

  border: none;
  border-radius: 999px;

  box-shadow: 0 8px 20px rgba(232, 119, 34, 0.25);

  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-decoration: none;

  box-sizing: border-box;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wohnmobile-overview-section .wohnmobile-card-button a:hover,
.wohnmobile-overview-section .wohnmobile-card-button a:focus {
  background: var(--aw-orange-hover);
  color: var(--aw-white);

  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(232, 119, 34, 0.30);

  text-decoration: none;
}

.wohnmobile-overview-section .wohnmobile-card-button a:focus-visible,
.wohnmobile-overview-section .wohnmobile-card-image-link:focus-visible {
  outline: 3px solid rgba(232, 119, 34, 0.30);
  outline-offset: 4px;
}


/* =========================================================
   9. Responsive Anpassungen
   ========================================================= */

/* Kleinere Desktops und Tablets */

@media (max-width: 1050px) {
  .wohnmobile-card-grid {
    grid-template-columns: 1fr;
  }

  .wohnmobile-card {
    display: grid;
    grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  }

  .wohnmobile-card-image-link {
    height: 100%;
  }

  .wohnmobile-card-image {
    height: 100%;
    aspect-ratio: auto;
  }
}


/* Tablet und große Smartphones */

@media (max-width: 760px) {
  .wohnmobile-card {
    display: flex;
  }

  .wohnmobile-card-image-link {
    height: auto;
  }

  .wohnmobile-card-image {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .wohnmobile-card-facts {
    grid-template-columns: 1fr;
  }

  .wohnmobile-card-fact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 13px 16px;
    text-align: left;
  }

  .wohnmobile-card-fact .fact-label {
    margin: 0;
  }

  .wohnmobile-card-fact .fact-value {
    text-align: right;
  }
}


/* Smartphones */

@media (max-width: 620px) {
  .wohnmobile-overview-section {
    padding: 36px 0 42px 0;
  }

  .wohnmobile-overview-inner {
    padding: 0 var(--aw-inner-padding-mobile);
  }

  .wohnmobile-overview-header h2 {
    font-size: 28px;
  }

  .wohnmobile-overview-header p {
    font-size: 16px;
  }

  .wohnmobile-card-grid {
    gap: 18px;
    margin-top: 28px;
  }

  .wohnmobile-card-content {
    padding: 24px 20px;
  }

  .wohnmobile-card-content h3 {
    font-size: 22px;
  }
}


/* Kleine Smartphones */

@media (max-width: 420px) {
  .wohnmobile-card-fact {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .wohnmobile-card-fact .fact-value {
    text-align: left;
  }
}


/* =========================================================
   10. Reduzierte Bewegung
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .wohnmobile-card,
  .wohnmobile-card-image,
  .wohnmobile-overview-section .wohnmobile-card-button a {
    transition: none;
  }

  .wohnmobile-card:hover,
  .wohnmobile-overview-section .wohnmobile-card-button a:hover {
    transform: none;
  }

  .wohnmobile-card:hover .wohnmobile-card-image {
    transform: none;
  }
}
/* =========================================================
   11. Kurze Reiseempfehlung innerhalb der Fahrzeugkarte
   ========================================================= */

.wohnmobile-card-fit {
  margin: 0 0 22px;
  padding: 14px 16px;

  background: rgba(232, 119, 34, 0.08);
  border-left: 4px solid var(--aw-orange);
  border-radius: 12px;

  box-sizing: border-box;
}

.wohnmobile-card-fit-label {
  display: block;
  margin: 0 0 5px;

  color: var(--aw-blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wohnmobile-card-fit p {
  margin: 0;

  color: var(--aw-text);
  font-size: 15px;
  line-height: 1.5;
}
/* =========================================================
   12. Ausstattung und Vorteile
   ========================================================= */

.wohnmobile-benefits-section {
  width: 100%;
  padding: 44px 0 52px;

  background: var(--aw-white);
  border-radius: var(--aw-radius-section);

  box-sizing: border-box;
  overflow: hidden;
}

.wohnmobile-benefits-inner {
  width: 100%;
  max-width: var(--aw-inner-max);
  margin: 0 auto;
  padding: 0 var(--aw-inner-padding);

  box-sizing: border-box;
}

.wohnmobile-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.wohnmobile-benefit-card {
  position: relative;
  padding: 26px 22px;

  background: var(--aw-light);
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-card);
  box-shadow: var(--aw-shadow);

  box-sizing: border-box;
}

.wohnmobile-benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  margin-bottom: 18px;

  background: var(--aw-orange);
  color: var(--aw-white);
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
}

.wohnmobile-benefit-card h3 {
  margin: 0 0 10px;

  color: var(--aw-blue);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
}

.wohnmobile-benefit-card p {
  margin: 0;

  color: var(--aw-text);
  font-size: 15px;
  line-height: 1.6;
}

.wohnmobile-benefits-note {
  max-width: 850px;
  margin: 26px auto 0;

  color: rgba(37, 54, 74, 0.72);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.wohnmobile-benefit-title-nowrap {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}


/* Tablet */

@media (max-width: 1050px) {
  .wohnmobile-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Smartphone */

@media (max-width: 620px) {
  .wohnmobile-benefits-section {
    padding: 36px 0 42px;
  }

  .wohnmobile-benefits-inner {
    padding: 0 var(--aw-inner-padding-mobile);
  }

  .wohnmobile-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .wohnmobile-benefit-card {
    padding: 22px 20px;
  }

  .wohnmobile-benefits-note {
    text-align: left;
  }
}
@media (max-width: 380px) {
  .wohnmobile-benefit-title-nowrap {
    font-size: 17px;
  }
}
/* =========================================================
   13. Übergabe und wichtige Hinweise
   ========================================================= */

.wohnmobile-handover-section {
  width: 100%;
  padding: 44px 0 52px;

  background: var(--aw-light);
  border-radius: var(--aw-radius-section);

  box-sizing: border-box;
  overflow: hidden;
}

.wohnmobile-handover-inner {
  width: 100%;
  max-width: var(--aw-inner-max);
  margin: 0 auto;
  padding: 0 var(--aw-inner-padding);

  box-sizing: border-box;
}

.wohnmobile-handover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.wohnmobile-handover-card {
  position: relative;
  padding: 26px 24px;

  background: var(--aw-white);
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-card);
  box-shadow: var(--aw-shadow);

  box-sizing: border-box;
}

.wohnmobile-handover-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  margin-bottom: 18px;

  background: var(--aw-blue);
  color: var(--aw-white);
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
}

.wohnmobile-handover-card h3 {
  margin: 0 0 10px;

  color: var(--aw-blue);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.wohnmobile-handover-card p {
  margin: 0;

  color: var(--aw-text);
  font-size: 15px;
  line-height: 1.6;
}

.wohnmobile-handover-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;

  margin-top: 22px;
  padding: 18px 22px;

  background: var(--aw-white);
  border-left: 5px solid var(--aw-orange);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(37, 54, 74, 0.08);

  box-sizing: border-box;
}

.wohnmobile-handover-note strong {
  color: var(--aw-blue);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.wohnmobile-handover-note p {
  margin: 0;

  color: var(--aw-text);
  font-size: 15px;
  line-height: 1.55;
}


/* Smartphone */

@media (max-width: 700px) {
  .wohnmobile-handover-section {
    padding: 36px 0 42px;
  }

  .wohnmobile-handover-inner {
    padding: 0 var(--aw-inner-padding-mobile);
  }

  .wohnmobile-handover-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .wohnmobile-handover-card {
    padding: 22px 20px;
  }

  .wohnmobile-handover-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .wohnmobile-handover-note strong {
    white-space: normal;
  }
}
/* =========================================================
   Anfragebereich
   ========================================================= */

.wohnmobile-request-section {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 52px 0;

  background:
    linear-gradient(
      135deg,
      rgba(23, 48, 79, 0.98),
      rgba(23, 48, 79, 0.91)
    );

  border-radius: var(--aw-radius-section);
  color: var(--aw-white);

  box-sizing: border-box;
  overflow: hidden;
}

.wohnmobile-request-inner {
  width: 100%;
  max-width: var(--aw-inner-max);
  margin: 0 auto;
  padding: 0 var(--aw-inner-padding);

  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;

  box-sizing: border-box;
}

.wohnmobile-request-content {
  max-width: 850px;
}

.wohnmobile-request-eyebrow {
  display: block;
  margin-bottom: 12px;

  color: #ffb26b;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wohnmobile-request-content h2 {
  margin: 0 0 18px;

  color: var(--aw-white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 800;
}

.wohnmobile-request-content > p {
  max-width: 760px;
  margin: 0;

  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.wohnmobile-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.wohnmobile-request-primary,
.wohnmobile-request-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 14px 26px;

  border-radius: 999px;

  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  text-decoration: none;

  box-sizing: border-box;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wohnmobile-request-primary {
  background: var(--aw-orange);
  color: var(--aw-white);
  border: 1px solid var(--aw-orange);
  box-shadow: 0 10px 24px rgba(232, 119, 34, 0.28);
}

.wohnmobile-request-primary:hover,
.wohnmobile-request-primary:focus {
  background: var(--aw-orange-hover);
  color: var(--aw-white);
  border-color: var(--aw-orange-hover);
  transform: translateY(-1px);
  text-decoration: none;
}

.wohnmobile-request-secondary {
  background: transparent;
  color: var(--aw-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.wohnmobile-request-secondary:hover,
.wohnmobile-request-secondary:focus {
  background: var(--aw-white);
  color: var(--aw-blue);
  border-color: var(--aw-white);
  transform: translateY(-1px);
  text-decoration: none;
}

.wohnmobile-request-primary:focus-visible,
.wohnmobile-request-secondary:focus-visible {
  outline: 3px solid rgba(255, 178, 107, 0.55);
  outline-offset: 4px;
}

.wohnmobile-request-note {
  margin-top: 16px !important;

  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.wohnmobile-request-info {
  padding: 26px 24px;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--aw-radius-card);

  backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.wohnmobile-request-info h3 {
  margin: 0 0 16px;

  color: var(--aw-white);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.wohnmobile-request-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wohnmobile-request-info li {
  position: relative;
  margin: 0;
  padding: 9px 0 9px 28px;

  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
}

.wohnmobile-request-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;

  color: #ffb26b;
  font-weight: 900;
}


/* Tablet */

@media (max-width: 900px) {
  .wohnmobile-request-inner {
    grid-template-columns: 1fr;
  }

  .wohnmobile-request-info {
    max-width: 620px;
  }
}


/* Smartphone */

@media (max-width: 620px) {
  .wohnmobile-request-section {
    padding: 40px 0;
  }

  .wohnmobile-request-inner {
    padding: 0 var(--aw-inner-padding-mobile);
    gap: 28px;
  }

  .wohnmobile-request-content h2 {
    font-size: 28px;
  }

  .wohnmobile-request-content > p {
    font-size: 16px;
  }

  .wohnmobile-request-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wohnmobile-request-primary,
  .wohnmobile-request-secondary {
    width: 100%;
  }

  .wohnmobile-request-info {
    padding: 22px 20px;
  }
}


/* Reduzierte Bewegung */

@media (prefers-reduced-motion: reduce) {
  .wohnmobile-request-primary,
  .wohnmobile-request-secondary {
    transition: none;
  }

  .wohnmobile-request-primary:hover,
  .wohnmobile-request-secondary:hover {
    transform: none;
  }
}
/* =========================================================
   xx. Abstände zwischen den Bereichen
   ========================================================= */

.wohnmobile-overview-section,
.wohnmobile-benefits-section,
.wohnmobile-handover-section {
  margin-top: 6px;
  margin-bottom: 6px;
}
/* Sekundärer Anfrage-Button – Textfarbe gegen Theme-Regeln absichern */
.wohnmobile-request-section a.wohnmobile-request-secondary,
.wohnmobile-request-section a.wohnmobile-request-secondary:link,
.wohnmobile-request-section a.wohnmobile-request-secondary:visited {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.75);
}

.wohnmobile-request-section a.wohnmobile-request-secondary:hover,
.wohnmobile-request-section a.wohnmobile-request-secondary:focus {
  background: #ffffff;
  color: var(--aw-blue) !important;
  border-color: #ffffff;
}
.wohnmobile-request-contract {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.wohnmobile-request-contract a,
.wohnmobile-request-contract a:visited {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wohnmobile-request-contract a:hover,
.wohnmobile-request-contract a:focus {
  color: #ffb26b;
}

.wohnmobile-request-contract span {
  display: block;
  margin-top: 5px;
}
/* =========================================================
   FAQ-Hinweis
   ========================================================= */

.wohnmobile-faq-teaser-section {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 34px 0;

  background: var(--aw-light);
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-section);

  box-sizing: border-box;
  overflow: hidden;
}

.wohnmobile-faq-teaser-inner {
  width: 100%;
  max-width: var(--aw-inner-max);
  margin: 0 auto;
  padding: 0 var(--aw-inner-padding);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  box-sizing: border-box;
}

.wohnmobile-faq-teaser-content {
  max-width: 900px;
}

.wohnmobile-faq-teaser-eyebrow {
  display: block;
  margin-bottom: 8px;

  color: var(--aw-orange);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.wohnmobile-faq-teaser-content h2 {
  margin: 0 0 10px;

  color: var(--aw-blue);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.2;
  font-weight: 800;
}

.wohnmobile-faq-teaser-content p {
  margin: 0;

  color: var(--aw-text);
  font-size: 16px;
  line-height: 1.65;
}

.wohnmobile-faq-teaser-button,
.wohnmobile-faq-teaser-button:visited {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 14px 26px;

  background: var(--aw-orange);
  color: var(--aw-white);

  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(232, 119, 34, 0.25);

  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.wohnmobile-faq-teaser-button:hover,
.wohnmobile-faq-teaser-button:focus {
  background: var(--aw-orange-hover);
  color: var(--aw-white);
  transform: translateY(-1px);
  text-decoration: none;
}

.wohnmobile-faq-teaser-button:focus-visible {
  outline: 3px solid rgba(232, 119, 34, 0.3);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .wohnmobile-faq-teaser-section {
    padding: 32px 0;
  }

  .wohnmobile-faq-teaser-inner {
    padding: 0 var(--aw-inner-padding-mobile);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .wohnmobile-faq-teaser-button {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wohnmobile-faq-teaser-button {
    transition: none;
  }

  .wohnmobile-faq-teaser-button:hover {
    transform: none;
  }
}
/* Preisübersicht Teaser Wohnmobile */

.wohnmobile-price-teaser-section {
  padding: 40px 0;
  background: transparent;
}

.wohnmobile-price-teaser-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(23,48,79,0.08);
}

.wohnmobile-price-teaser-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #e67e22;
  font-weight: 700;
  font-size: 0.95rem;
}

.wohnmobile-price-teaser-content h2 {
  margin: 0 0 12px;
  color: #17304f;
}

.wohnmobile-price-teaser-content p {
  margin: 0;
  color: #17304f;
  line-height: 1.6;
}

.wohnmobile-price-teaser-button {
  display: inline-block;
  background: #ef7d00;
  color: #ffffff;
  padding: 15px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.wohnmobile-price-teaser-button:hover {
  background: #d96f00;
  color: #ffffff;
}


@media (max-width: 700px) {

  .wohnmobile-price-teaser-section {
    padding: 30px 15px;
  }

  .wohnmobile-price-teaser-inner {
    padding: 28px 22px;
    flex-direction: column;
    text-align: center;
  }

  .wohnmobile-price-teaser-button {
    width: 100%;
    text-align: center;
  }

}
.wohnmobile-card-fit {
  background: #fff8f2;
  border-left: 3px solid #f57c00;
  border-radius: 10px;

  padding: 10px 14px;
  margin: 16px 0;

  font-size: 0.94rem;
  line-height: 1.45;
}

.wohnmobile-card-fit-label {
  display: block;

  margin-bottom: 4px;

  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 700;

  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #0b2d59;
}

.wohnmobile-card-fit p {
  margin: 0;
}