.tlh-latest-vehicles {
    position: relative;
    width: 100%;
}

.tlh-latest-vehicles__top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.tlh-latest-vehicles__intro {
    max-width: 500px;
}

.tlh-latest-vehicles__title {
    margin: 0 0 16px;
    color: #111;
}

.tlh-latest-vehicles__desc {
    color: #333;
}

.tlh-latest-vehicles__desc p {
    margin: 0;
}

.tlh-latest-vehicles__controls {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.tlh-latest-vehicles__arrow {
    width: 45px;
    height: 40px;
    border: 0;
    background: #000;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.tlh-latest-vehicles__arrow--prev {
    border-radius: 999px 0 0 999px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.tlh-latest-vehicles__arrow--next {
    border-radius: 0 999px 999px 0;
}

.tlh-latest-vehicles__arrow span {
    font-size: 34px;
    line-height: 1;
    transform: translateY(-1px);
}

.tlh-latest-vehicles__viewport {
    overflow: hidden;
    width: 100%;
}

.tlh-latest-vehicles__viewport::-webkit-scrollbar {
    display: none;
}

.tlh-latest-vehicles__track {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.tlh-latest-vehicles__slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.tlh-latest-vehicles .tlh-vehicle-card {
    height: 100%;
}

.tlh-latest-vehicles .tlh-vehicle-card__image {
    position: relative;
}

.tlh-latest-vehicles .tlh-vehicle-card__badge {
    top: 18px;
    left: 18px;
    right: auto;
    background: #77bee9;
    color: #111;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
}

.tlh-latest-vehicles .tlh-vehicle-card__title {
    min-height: 0;
}

.tlh-latest-vehicles .tlh-vehicle-card__button {
    min-width: 108px;
}

.tlh-latest-vehicles__bottom {
    margin-top: 24px;
}

.tlh-latest-vehicles__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 4px;
    background: #c22035;
    border: 1px solid #9B0A21;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.tlh-latest-vehicles__view-all:hover {
    background: #9B0A21;
    border-color: #9B0A21;
    color: #fff;
}

@media (max-width: 1400px) {
    .tlh-latest-vehicles__slide {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 320px;
    }
}

@media (max-width: 1024px) {
    .tlh-latest-vehicles__top {
        flex-direction: column;
        align-items: start;
    }

    .tlh-latest-vehicles__slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .tlh-latest-vehicles__slide {
        flex: 0 0 100%;
    }

    .tlh-latest-vehicles__arrow {
        width: 45px;
        height: 40px;
    }
}
.tlh-latest-vehicles__arrow svg {
    color: #fff;
    fill: #fff;
    width: 16px;
}