/*  IMPORTANT: Add .teaser-list class in front of any new style classes and do not remove it from any existing css to prevent changes to other elements on the Offers page */
@font-face {
    font-family: "Whitney";
    src: url("../fonts/Whitney-Book_Web.woff2") format("woff2"),
        url("../fonts/Whitney-Book_Web.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

.teaser-list .nowrap{
    white-space: nowrap;
}

.teaser-list .offer-item {
    display: flex;
}

.teaser-list .badge-icon {
    width:20px;
    height:20px;
}

.teaser-list .offer-item > div {
    border-radius: 12px;
    display: flex;
    flex: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.teaser-list .offer-item > div:hover {
    border-color: #bbbcbc;
}

.teaser-list .offer-expiry {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    border-radius: 455px;
    background-color: #ffffff;
    padding: 4px 10px;
    margin-bottom: 20px;
}

.teaser-list .offer-expiry .days, .expires {
    font-family: "Whitney";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #8b1d41;
}

.teaser-list .offer-content .offer-title {
    font-family: "Whitney";
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    color: #383B3E;
    margin-bottom: 4px;
}

.teaser-list .subheaderStyles ul {
    list-style: none;
}

.teaser-list .subheaderStyles ulli {
    padding: 0;
}

.teaser-list .subheader {
    margin: 0;
}

.teaser-list .offer-desc {
    font-family: "Whitney";
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #606366;
}

.teaser-list .offer-button a {
    width: 33%;
    display: block;
    border-radius: 4px;
    padding: 16px;
    background-color: #c41f3e;
    color: #ffffff;
    font-family: "Whitney";
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
    transition: background .1s linear, color .1s linear, border-color .1s linear;
}

.teaser-list .offer-button a:hover{
    background-color: #8b1d41;
}

.teaser-list .offer-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser-list .offer-item:last-child:nth-child(odd) .offer-right img {
    border-radius: 0 12px 12px 0;
}

.teaser-list .offer-item:nth-last-child(1):nth-child(odd) > div {
    flex-direction: row;
}

.teaser-list .offer-left {
    flex-basis: calc(50% - 10px);
    padding: 32px !important;
}

.teaser-list .offer-right {
    flex-basis: calc(50% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser-list .offer-right img {
    width: 100%;
    height: 100%;
    border-radius: 0 0 12px 12px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .teaser-list .offer-content .offer-title {
        font-size: 21px;
        line-height: 28px;
    }
    .teaser-list .offer-button a {
        width: 100%;
    }
    .teaser-list .offer-item:nth-last-child(1):nth-child(odd) > div {
        flex-direction: column;
    }
    .teaser-list .offer-left {
        padding: 20px !important;
    }
    .teaser-list .offer-right img {
        border-radius: 0 0 12px 12px;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    .teaser-list .offer-content .offer-title {
        font-size: 24px;
        line-height: 30px;
    }
    .teaser-list .offer-button a.linkButton {
        display: block;
        min-width: 40%;
        width: fit-content;
    }
}

@media (min-width: 959px) {
    .teaser-list .offer-button a.linkButton {
        display: block;
        min-width: 33%;
        width: fit-content;
    }
}