/**
 * CTA Band block. Self-contained styles.
 * Dark band (Brand Dark custom/background), accent heading, white copy.
 * See css/brand-tokens.css.
 */

.cta-band {
    padding-top: 48px;
    padding-bottom: 48px;
    color: #fff;
}

.cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.cta-band__content {
    flex: 1 1 320px;
    min-width: 0;
}

.cta-band__heading {
    margin: 0 0 8px;
    color: var(--kipu-accent-light); /* #C4B5FD */
    font-weight: 800;
    font-size: 26px;
    line-height: 1.24;
}

.cta-band__text {
    margin: 0;
    color: #fff;
    font-size: 18.7px;
}

.cta-band__action {
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .cta-band__inner {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .cta-band {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .cta-band__heading {
        font-size: 31px;
    }
}
