.cta-band {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 6vw, 72px) 0;
    background: var(--blue-500);
}

/* Darkens the leading edge so the copy holds against the flat fill. */
.cta-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 47, 93, 0.35) 0%, rgba(9, 47, 93, 0) 55%);
}

.cta-band-inner {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5.4vw, 82px);
    display: flex;
    flex-flow: row wrap;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    justify-content: space-between;
}

.cta-band-copy {
    flex: 1 1 520px;
    min-width: 280px;
}

.cta-band-eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.cta-band[class] .cta-band-heading {
    margin: 16px 0 0;
    font-size: clamp(30px, 3.9vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: var(--white);
}

.cta-band a.cta-band-link {
    flex-shrink: 0;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border-radius: 4px;
    background: var(--white);
    padding: 20px 28px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    color: var(--dark-blue);
    box-shadow: 0 2px 0 rgba(9, 47, 93, 0.18);
    transition: transform 180ms, box-shadow 180ms;
}

.cta-band a.cta-band-link span {
    color: var(--orange);
}

.cta-band a.cta-band-link:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 rgba(9, 47, 93, 0.18);
}

@media screen and (max-width: 767px) {
    .cta-band-inner {
        justify-content: flex-start;
    }
}
