.interest-free-promo {
    margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
    .interest-free-promo {
        margin-bottom: 80px;
    }
}

.interest-free-promo__inner {
    display: flex;
    flex-direction: column;
    gap: 30px 60px;
    padding: 20px;
    background-color: #01336f;
}

@media only screen and (min-width: 768px) {
    .interest-free-promo__inner {
        flex-direction: row;
        align-items: stretch;
    }
}

.interest-free-promo__image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 35/20;
}

@media only screen and (min-width: 768px) {
    .interest-free-promo__image {
        flex: 2 1 0;
        aspect-ratio: auto;
        width: 100%;
        height: auto;
    }
}
.interest-free-promo__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interest-free-promo__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media only screen and (min-width: 768px) {
    .interest-free-promo__content {
        flex: 3 1 0;
        padding: 30px 0;
    }
}

.interest-free-promo__title {
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    color: white;
}

@media only screen and (min-width: 768px) {
    .interest-free-promo__title {
        font-size: 36px;
    }
}
.interest-free-promo__description {
    margin-bottom: 0;
    font-size: 16px;
    color: white;
}
