:root{
    --accent-color: #00A19B;
    --secondary-color: #ef8637;
    --background-accent-color: #F8F8F8;
    --secondary-text-color: #999999;
}

.discounts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 20px 0;
}

.discount-item {
    display: flex;
    gap: 30px;
    height: 100%;
}
.discount-text em{
    font: revert;
}
.discount-text strong {
    font-weight: 700;
}
.discount-text ul{
    list-style: disc;
    margin-left: 20px;
}
.discount-text ul li::marker{
    color: var(--secondary-color);
}
.discount-image {
    flex: 0 0 30%;
    max-width: 30%;
}

.discount-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    max-height: 500px;
}

.discount-item .banner-action{
    max-width: 175px;
    max-height: 40px;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--background-accent-color);
    margin-top: 10px;
    border: none;
    outline: none;
}
.discount-item h2{
    font-size: 24px;
    padding-bottom: 5px;
}
.discount-item .banner-action:hover{
    outline: 2px solid var(--secondary-text-color);
    background: var(--secondary-color);
}

.discount-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 650px;
}
.discount-text > div:last-child {
    margin-top: auto;
}

@media (max-width: 768px) {
    .discount-item {
        flex-direction: column;
        align-items: center;
    }

    .discount-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .discount-item .banner-action{
        width: 100%;
        max-width: unset;
    }
}