.image-banner {
    position: relative;
    display: block;
    height: 326px;
    border: none;
}

.image-banner--right {
    margin-top: 30px;
}

.image-banner__pattern {
    position: absolute;
    width: 65px;
    top: 16px;
}

.image-banner--left .image-banner__pattern {
    left: 16px;
}

.image-banner--right .image-banner__pattern {
    right: 16px;
}

.image-banner__details {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 15px;
    z-index: 1;
    width: 100%;
}

.image-banner__details::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 112px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(1, 1, 1, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.image-banner__title {
    color: #fff;
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 28px;
    line-height: 1.285em;
    font-weight: 700;
}

.image-banner__discount {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 25px;
    line-height: 1em;
    font-weight: 400;
    color: #fff;
}

.double-image-flex {
    gap: 30px;
    display: grid;
}

.product-tab-slide-item-content {
    height: 75px;
    overflow: auto;
}

@media (min-width: 768px) {
    .double-image-flex {
        gap: 0;
    }

    .image-banner--right {
        margin-top: 0;
    }

    .image-banner {
        height: 321px;
    }

    .double-image-flex {
        margin: 0 -8px;
        display: flex;
    }

    .double-image-item {
        padding: 0 8px;
        flex-grow: 1;
    }
}

@media (min-width: 1200px) {
    .image-banner {
        height: 615px;
        background-color: #000;
    }

    .image-banner__pattern {
        width: 124px;
        top: 30px;
    }

    .image-banner--left .image-banner__pattern {
        left: 30px;
    }

    .image-banner--right .image-banner__pattern {
        right: 30px;
    }

    .double-image-flex {
        margin: 0 -15px;
    }

    .double-image-item {
        padding: 0 15px;
    }

    .image-banner__details {
        padding: 30px 37px;
    }

    .image-banner__details::before {
        height: 212px;
    }

    .image-banner__title {
        font-size: 40px;
        line-height: 1.225em;
    }

    .image-banner__discount {
        font-size: 37px;
    }

    .image-banner img {
        transition: all ease-in 0.2s;
    }

    .image-banner:hover {
        .image-banner__image {
            opacity: 0.65;
        }

        .image-banner__discount-arrow {
            margin-left: 0.8rem;
        }
    }
}
