@font-face {
  font-family: 'Brushstrike';
  src: url('/assets/fonts/Brushstrike trial.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.kategorie-title {
    font-family: 'Brushstrike', sans-serif;
    font-size: 54px !important;
    color: white;
    text-align: center;
}

.no-vehicles {
    color: #ccc;
    text-align: center;
}

.fahrzeug-card {
    background: transparent;
    padding: 24px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    line-height: 1.8;
}

.fahrzeug-bild {
    width: 100%;
    margin-bottom: 16px;
}

.fahrzeug-bild img {
    width: 600px;
    max-height: 480px;
    object-fit: cover;
    border-radius: 10px;
}

.fahrzeug-name {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 24px;
}

.preisblock {
    margin: 12px 0;
}

.neupreis {
    font-size: 16px;
    margin: 8px 0;
}

.ausstattungspreis {
    font-size: 16px;
    margin: 8px 0;
}

.unser-preis {
    font-size: 20px;
    font-weight: bold;
    margin: 8px 0;
}

.details div {
    margin: 10px 0;
}

.specials {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
}

.specials li {
    margin-bottom: 6px;
}

/* Inspektionsfarben */
.inspektionszeile {
    margin-top: 12px;
}

.inspekt-gruen {
    color: #38761d;
}

.inspekt-gelb {
    color: #ff9900;
}

.inspekt-rot {
    color: #ff0000;
}

.fahrzeug-zeile {
    display: flex;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

.fahrzeug-card {
    background: transparent;
    padding: 24px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    line-height: 1.8;
    flex: 0 0 33.33%;
    box-sizing: border-box;
    max-width: 33.33%;
}

.fahrzeug-card.leerplatz {
    visibility: hidden;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.werbeblock-card {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    height: 550px;
    transition: transform 0.2s ease;
}

.werbeblock-card a {
    display: block;
    height: 100%;
    width: 100%;
}

.werbung-bild {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.werbeblock-card:hover .werbung-bild {
    transform: scale(1.03);
}

.fahrzeug-layout {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 30px;
    align-items: center;
    width: 100%;
}

.werbebalken {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    padding: 24px 0;
    box-sizing: border-box;
}

.werbung-bild-horizontal {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 12px;
}

.werbung-bild-horizontal {
    width: 100%;
    max-width: 1000px;
    max-height: 180px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.werbung-bild-horizontal:hover {
    transform: scale(1.02);
}