/* ==========================
   CTA BANNER
   Same container treatment as the .surface-card samples in assets-elements.php
   (border, radius, shadow, hover lift) — just recolored with the primary gradient.
   Layout comes from the shared .flex-center-between utility in base.css.
========================== */

.cta-banner.surface-card {
    margin-top: 1.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-hover) 100%);
    border-color: transparent;
    color: var(--color-bg);
    gap: 1.25rem;
    min-height: clamp(120px, 12vw, 160px);
}

.cta-banner__content {
    max-width: 70%;
}

.cta-banner__content strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--color-bg);
}

.cta-banner__content p {
    margin: 0;
    color: rgba(255, 253, 248, 0.92);
}

.cta-banner__action {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    /* overrides the shared .flex-center-between utility's align-items: center */
    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-banner__action {
        width: 100%;
    }
}
