.home-vehicle-catalog {
    padding: 34px 0 72px;
    background: #f7faf8;
}

.home-vehicle-catalog__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.home-vehicle-catalog__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #16834f;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
}

.home-vehicle-catalog__head h2 {
    margin: 0;
    color: #17231d;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.home-vehicle-catalog__head p {
    max-width: 560px;
    margin: 9px 0 0;
    color: #7a8881;
    font-size: 14px;
    line-height: 1.5;
}

.home-vehicle-catalog__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: #16834f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.home-vehicle-catalog__all span {
    font-size: 18px;
    transition: transform .2s ease;
}

.home-vehicle-catalog__all:hover span {
    transform: translateX(4px);
}

.home-vehicle-catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-brand-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    border: 1px solid #e1ebe5;
    border-radius: 22px;
    background: #fff;
    color: #17231d;
    text-decoration: none;
    box-shadow: 0 7px 25px rgba(22, 65, 43, .045);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
    -webkit-tap-highlight-color: transparent;
}

.home-brand-card:hover {
    transform: translateY(-3px);
    border-color: #c9dfd2;
    box-shadow: 0 15px 36px rgba(22, 65, 43, .09);
}

.home-brand-card__image {
    position: relative;
    height: 145px;
    display: grid;
    place-items: center;
    padding: 25px;
    background:
        radial-gradient(
            circle at center,
            #f3f8f5 0%,
            #f9fbfa 65%,
            #fff 100%
        );
}

.home-brand-card__image::after {
    content: "";
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: 7px;
    height: 1px;
    background: #e8efeb;
}

.home-brand-card__image img {
    position: relative;
    z-index: 1;
    max-width: 105px;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: contain;

    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
}

.home-brand-card__content {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 17px;
}

.home-brand-card__content h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 850;
    letter-spacing: -.02em;
}

.home-brand-card__content span:not(.home-brand-card__arrow) {
    display: block;
    margin-top: 4px;
    color: #87948d;
    font-size: 12px;
}

.home-brand-card__arrow {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef7f2;
    color: #16834f;
    font-size: 18px;
    transition:
        background .2s ease,
        transform .2s ease;
}

.home-brand-card:hover .home-brand-card__arrow {
    background: #16834f;
    color: #fff;
    transform: translateX(2px);
}

@media (max-width: 850px) {

    .home-vehicle-catalog {
        padding: 28px 0 52px;
    }

    .home-vehicle-catalog__head {
        align-items: flex-start;
        margin-bottom: 17px;
    }

    .home-vehicle-catalog__head h2 {
        font-size: 27px;
    }

    .home-vehicle-catalog__head p {
        font-size: 13px;
    }

    .home-vehicle-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-brand-card {
        min-height: 190px;
        border-radius: 18px;
    }

    .home-brand-card__image {
        height: 120px;
        padding: 20px;
    }

    .home-brand-card__image img {
        max-width: 80px;
        max-height: 70px;
    }

    .home-brand-card__content {
        min-height: 67px;
        padding: 11px 12px;
    }

    .home-brand-card__content h3 {
        font-size: 15px;
    }

    .home-brand-card__content span:not(.home-brand-card__arrow) {
        font-size: 11px;
    }

    .home-brand-card__arrow {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 16px;
    }

}

@media (max-width: 390px) {

    .home-vehicle-catalog__grid {
        gap: 8px;
    }

    .home-brand-card {
        min-height: 180px;
    }

}
