.vehicle-card {
    position: relative;
    display: flex;
    flex-direction: column;

    /* 🔥 moderner statt hartem Gradient */
    background: rgba(15, 20, 30, 0.72);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 18px;

    color: inherit;
    text-decoration: none;

    overflow: hidden;
    cursor: pointer;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;

    min-height: 340px;

    /* 🔥 wichtiger Layer-Effekt */
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* 🔥 Hover deutlich hochwertiger */
.vehicle-card:hover {
    transform: translateY(-4px);

    border-color: rgba(94, 162, 255, 0.35);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(94, 162, 255, 0.16),
        0 0 28px rgba(94, 162, 255, 0.18);
}

/* 🔥 Focus bleibt klar sichtbar */
.vehicle-card:focus-within {
    border-color: #5ea2ff;

    box-shadow:
        0 0 0 3px rgba(94, 162, 255, 0.18),
        0 12px 30px rgba(0, 0, 0, 0.35);
}

/* 🔥 leichte Glow-Ebene oben */
.vehicle-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top left, rgba(94,162,255,0.08), transparent 40%);

    opacity: 0.6;
    pointer-events: none;
}

/* CONTENT */

.vehicle-card-meta {
    padding: 14px 14px 0;
}

.vehicle-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.badge-manufacturer {
    background: rgba(94, 162, 255, 0.14);
    border: 1px solid rgba(94, 162, 255, 0.32);
    color: #8fc8ff;
}

.manufacturer-card-image-area {
    aspect-ratio: 16 / 9;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.manufacturer-card-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.manufacturer-card-image-placeholder {
    width: 60%;
    height: 40%;
    background: #222;
    border-radius: 6px;
}

.badge-class {
    background: rgba(94, 162, 255, 0.08);
    border: 1px solid rgba(94, 162, 255, 0.22);
    color: #9fcfff;
}

.badge-meta,
.badge-neutral {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    color: #d2d9e8;
}

.vehicle-card-image-area {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 12px;
    background: #11151d;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vehicle-card-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.vehicle-card:hover .vehicle-card-image {
    transform: scale(1.04);
}

.vehicle-card-image-placeholder {
    background: linear-gradient(180deg, #161b24 0%, #11151d 100%);
}

.vehicle-card-title {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.vehicle-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 14px 15px;
}

.vehicle-card-title a {
    color: #edf2ff;
    text-decoration: none;
    transition: color 0.18s ease;
}

.vehicle-card-title a:hover {
    color: #8bc3ff;
}

.vehicle-card-title a:focus-visible {
    outline: 2px solid #5ea2ff;
    outline-offset: 3px;
    border-radius: 4px;
}

.vehicle-card-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.vehicle-card-stat {
    min-width: 0;
}

.vehicle-card-stat-label {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    line-height: 1.2;
    color: #72809b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vehicle-card-stat-value {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    color: #edf2ff;
    font-weight: 700;
    word-break: break-word;
}

.vehicle-card-stat:first-child .vehicle-card-stat-value {
    color: #b7daff;
}

.badge-link {
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.badge-manufacturer,
.badge-class {
    background: rgba(94, 162, 255, 0.12);
    border: 1px solid rgba(94, 162, 255, 0.3);
    color: #8bc3ff;
}

.badge-manufacturer:hover,
.badge-class:hover {
    background: rgba(94, 162, 255, 0.18);
    border-color: rgba(94, 162, 255, 0.45);
    color: #b7daff;
}

.badge-meta,
.badge-neutral {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cfd6e6;
}

@media (max-width: 768px) {
    .vehicle-card {
        min-height: auto;
        border-radius: 16px;
    }

    .vehicle-card-meta {
        padding: 12px 12px 0;
    }

    .vehicle-card-body {
        padding: 12px;
        gap: 8px;
    }

    .vehicle-card-title {
        font-size: 18px;
    }

    .vehicle-card-stats {
        font-size: 12px;
        gap: 6px 12px;
    }

    .vehicle-card-stat:not(:last-child)::after {
        margin-left: 12px;
    }
}

@media (max-width: 480px) {
    .vehicle-card-badges {
        gap: 6px;
    }

    .badge {
        font-size: 11px;
        padding: 5px 9px;
    }

    .vehicle-card-title {
        font-size: 17px;
    }
}