.calculator-cta .container {
    padding-left: 0;
    padding-right: 0;
}

.calculator-cta__inner {
    background-color: #01071f;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.calculator-cta__icon {
    flex-shrink: 0;
}

.calculator-cta__icon img {
    display: block;
    width: 80px;
    height: 80px;
}

.calculator-cta__body {
    flex: 1;
    max-width: 826px;
    min-width: 0;
}

.calculator-cta__eyebrow {
    font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

@media (min-width: 1920px) {
    .calculator-cta__eyebrow {
        font-size: 18px;
    }
}

.calculator-cta__heading {
    font-size: calc(20px + (35 - 20) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 1920px) {
    .calculator-cta__heading {
        font-size: 35px;
    }
}

.calculator-cta__content {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #fff;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (min-width: 1920px) {
    .calculator-cta__content {
        font-size: 16px;
    }
}

.calculator-cta__action {
    flex-shrink: 0;
    margin-left: 0;
    width: 100%;
}

.calculator-cta__action .btn {
    white-space: nowrap;
    min-width: unset;
    width: 100%;
    justify-content: center;
}

@media (min-width: 992px) {
    .calculator-cta__inner {
        flex-direction: row;
        align-items: center;
        padding: 2.5rem 3rem;
        gap: 2.5rem;
    }

    .calculator-cta__icon img {
        width: 96px;
        height: 96px;
    }

    .calculator-cta__action {
        width: auto;
        margin-left: auto;
    }

    .calculator-cta__action .btn {
        width: auto;
        min-width: 260px;
    }
}
