/* =========================================================================
   SEZIONE — Blocco CTA finale
   ========================================================================= */

.ex-cta__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(2.5rem, 1.5rem + 5vw, 6rem) clamp(1.5rem, 1rem + 4vw, 5rem);
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(226, 212, 168, 0.15) 0%, transparent 50%),
        var(--ex-surface-2);
    border: 1px solid var(--ex-border-hairline);
    border-radius: var(--ex-radius-lg);
    box-shadow: var(--ex-shadow-pop);
}

.ex-cta__title {
    max-width: 22ch;
    margin-bottom: var(--ex-space-2xl);
    font-weight: 900;
    line-height: 1.1;
}

@media (max-width: 640px) {
    .ex-cta__box {
        align-items: stretch;
        text-align: left;
    }

    .ex-cta__title {
        max-width: none;
    }
}
