/* Promos list */

.promo__wrp {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.promo__list {
    width: 100%;
    max-width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.promo__calc {
    width: 100%;
    max-width: 32%;
}

.promo-card {
    width: 100%;
    max-width: 48%;
    background: #f1f2fa;
    border-radius: 15px;
}

.promo-card__image {
    border-radius: 15px 15px 0 0;
}

.promo-card__image img {
    width: 100%;
    border-radius: 15px;
}

.promo-card__body {
    padding: 15px;
}

.promo-card__title {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-decoration-line: underline;
    color: #5461E1;
    transition: .3s;
    margin-bottom: 55px;
}

.promo-card__text {
    width: fit-content;
    height: 26px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FDCD5C;
    border-radius: 40px;
    color: #FFFFFF;
    padding: 12px;
}

.promo__calc {
    padding: 20px 32px;
    background: #f5f6fb;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    border-radius: 15px;
}

.promo__calc .calculator__results {
    flex-direction: column;
}

.promo__calc .calculator-btns {
    flex-direction: column;
}

.promo__calc .calculator-btns a {
    width: 100%;
}

.promo-grid__calc {
    position: sticky;
    top: 100px;
}

@media screen and (max-width: 1023px) {
    .promo__wrp {
        flex-direction: column;
        align-items: center;
    }

    .promo__list {
        max-width: 100%;
    }

    .promo__calc {
        max-width: 385px;
    }

    .promo__list {
        flex-direction: column;
    }

    .promo-card {
        max-width: 100%;
    }
}