.car__grid {
    --primary: #002c5f;
    --secondary: #cfd3d9;
    --muted: #777;
    --border: #eaeaea;
    display: grid;
    gap: 1.5rem;
    @media (min-width: 768px) {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
    .car__card {
        background: #fff;
        border-radius: 12px;
        padding: 0.75rem;
        border: 1px solid var(--border);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
        position: relative;
        .car__card__content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        img {
            width: 100%;
            max-width: 600px!important;
            object-fit: contain;
            margin-bottom: 1.25rem;
            display: block;
            margin-inline: auto;
        }
        .price-label {
            color: var(--muted);
            margin-top: 1rem;
        }
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        .spec {
            font-size: 0.875rem;
            color: var(--muted);
            min-height: 2.5rem;
        }
        .catalog {
            color: var(--muted);
        }
        .catalog span {
            text-decoration: line-through;
        }
        .badge {
            font-weight: 700;
            color: var(--secondary);
            text-transform: uppercase;
            padding-top: 1rem;
        }

        .model {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--secondary);
            padding-bottom: 1rem;
        }
        .badge, .model {
            text-align: center;
        }
    }
}
body:has(.page-main .car__grid) #nav_car_placer {
    display: none;
}
body:has(.page-main .car__grid) .mpgd-app-header {
    min-height: 20rem;
    @media (min-width: 768px) {
        min-height: 35rem;
    }
}