.cp_sale-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cp_sale-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-basis: 100%;
    gap: 15px;
}

.cp_sale-slider-header__title {
    display: flex;
    align-items: baseline;
    gap: 32px;
}
@media (max-width: 768px) {
    .cp_sale-slider-header__title {
        flex-wrap: wrap;
        gap: 4px;
    }
}

.cp_sale-slider-header__link {
    color: var(--secondary-text-color);
    font-size: 14px;
    line-height: normal;
    white-space: nowrap;
}
.cp_sale-slider-header__link:hover {
    color: var(--brand-color);
}
@media (max-width: 768px) {
    .cp_sale-slider-header__link {
        flex-basis: 100%;
    }
}

.cp_sale-slider-header__navigation {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .cp_sale-slider-header__navigation {
        display: none;
    }
}

.cp_sale-slider-navigation__prev,
.cp_sale-slider-navigation__next {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 29px;
    width: 29px;

    cursor: pointer;
}

.cp_sale-slider-navigation__prev svg,
.cp_sale-slider-navigation__next svg {
    fill: #888;
}
.cp_sale-slider-navigation__prev:hover svg,
.cp_sale-slider-navigation__next:hover svg {
    fill: #333;
}

.cp_sale-slider-content {

}

.cp_sale-slider-content__item {
    width: auto;
    flex-shrink: 0;
    display: block;
    height: 100%;
    max-height: 100%;
}

.cp_sale-slider-content__item {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
}

.cp_sale-slider-content__title {
    display: -webkit-box;
    overflow: hidden;

    color: var(--primary-title-color);
    font-size: 15px;
    line-height: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cp_sale-slider-content__image {
    display: block;

    max-width: 242px;
    width: 100%;
    height: 150px;

    border-radius: 4px;
    object-fit: cover;
}
