.hits-slider {
    position: relative;
    width: 100%;
}

.hits-slider__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.hits-slider__carousel-wrap {
    position: relative;
    padding: 0 34px;
    min-height: 280px;
}

.hits-slider__arrow {
    position: absolute;
    top: 95px;
    z-index: 10;
    transform: none;
    border: 0;
    background: transparent;
    color: #4f414a;
    font-size: 28px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.hits-slider__arrow--prev {
    left: 0;
}

.hits-slider__arrow--next {
    right: 0;
}

.hits-slider__arrow:hover,
.hits-slider__arrow:focus {
    color: #ff1f12;
    outline: none;
}

.hit-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hit-card__image {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    text-decoration: none;
}

.hit-card__image img {
    display: block;
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
}

.hit-card__name {
    display: block;
    margin-bottom: 14px;
    color: #8b8290;
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
}

.hit-card__name:hover {
    color: #ff1f12;
}

.hit-card__price {
    margin-top: auto;
    color: #ff1f12;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .hits-slider__title {
        font-size: 21px;
    }

    .hits-slider__carousel-wrap {
        padding: 0 26px;
    }

    .hits-slider__arrow {
        font-size: 24px;
    }

    .hit-card__image {
        height: 150px;
    }

    .hit-card__image img {
        max-height: 150px;
    }

    .hit-card__name {
        font-size: 15px;
    }

    .hit-card__price {
        font-size: 20px;
    }
}