/* ============================
   🚗 Global Styles für Fahrzeuge
============================ */
body.single-fahrzeuge {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.7;
}

.single-fahrzeuge .entry-content {
  color: #222;
}

/* ============================
   🚘 Layout & Struktur
============================ */
.fahrzeug-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}

@media (min-width: 1024px) {
  .fahrzeug-layout {
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}

.fahrzeug-content {
  flex: 1 1 auto;
  padding-right: 40px;
}

.fahrzeug-sidebar {
  flex: 0 0 350px;
  max-width: 350px;
  box-sizing: border-box;
}

/* ============================
   🔠 Titel & Bild
============================ */
.fahrzeug-title {
  font-size: 32px;
  margin: 0 0 20px;
  color: #222;
}

.fahrzeug-hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ============================
   ✍️ Beschreibung
============================ */
.fahrzeug-beschreibung {
  padding-right: 30px;
}

.fahrzeug-beschreibung p {
  margin-bottom: 25px;
  line-height: 1.7;
}

.fahrzeug-beschreibung p:last-of-type {
  font-size: 14px;
  color: #555;
}

.fahrzeug-beschreibung h2,
.fahrzeug-beschreibung h3 {
  margin: 30px 0 10px;
}

.fahrzeug-beschreibung a {
  color: #b538b7;
  text-decoration: underline;
}

.fahrzeug-beschreibung a:hover {
  color: #222;
}

/* ============================
   📦 Infobox: Grid-Stil
============================ */
.fahrzeug-infobox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  background: #fdf7fd;
  border: 1px solid #b538b7;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
  box-shadow: 0 0 0 2px #b538b7 inset;
}

.infobox-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.infobox-item .label {
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}

.infobox-item .value {
  font-size: 15px;
  color: #222;
}

/* Mobile Optimierung */
@media (max-width: 480px) {
  .fahrzeug-infobox-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   🖼 Galerie
============================ */
.fahrzeug-galerie {
  margin-top: 40px;
}

.fahrzeug-galerie h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.galerie-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.galerie-wrapper img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* ============================
   📦 Sidebar Shortcode-Bereich
============================ */
.fahrzeug-sidebar .waffe-infobox {
  width: 100%;
  max-width: 100%;
}

/* ============================
   🔁 Pagination (optional)
============================ */
.fahrzeug-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
