/**
 * Водителям: фон + медиа 680×570, radius 40.
 */

.drivers {
    background-color: var(--site-surface);
    color: var(--site-text-primary);
}

body.drivers.site-page {
    background-color: var(--site-surface);
}

.hero--drivers .hero__media {
    max-width: 42.5rem; /* 680px */
    overflow: hidden;
    border-radius: 2.5rem; /* 40px */
}

.hero--drivers .hero__image {
    width: 100%;
    height: 100%;
    aspect-ratio: 680 / 570;
    border-radius: 2.5rem; /* 40px */
    object-fit: cover;
}

@media (min-width: 48rem) {
    .hero--drivers .hero__media {
        width: 42.5rem;
        height: 35.625rem;
    }

    .hero--drivers .hero__image {
        aspect-ratio: auto;
    }
}

@media (min-width: 64rem) {
    .hero--drivers {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 2.5rem;
    }

    .hero--drivers .hero__media {
        width: 42.5rem;
        height: 100%;
        max-width: 42.5rem;
    }

    .hero--drivers .hero__title {
        max-width: 28rem;
    }
}
