/* ============================================================
   Block: cta  (sections/block_cta.php)
   Centered call-to-action — eyebrow, title, subtitle, 2 buttons.
   Loaded only on pages that contain a "cta" block.
   ============================================================ */

.block-cta {
    border-top: 1px solid var(--line);
    text-align: center;
}

.block-cta__inner {
    max-width: 640px;
}

.block-cta .eyebrow {
    margin-bottom: 1rem;
}

.block-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1rem;
}

.block-cta__sub {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.block-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Mobile: stacked, full-width, equal-size, centered buttons ── */
@media (max-width: 767px) {
    .block-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .block-cta__actions > a {
        width: 100%;
        text-align: center;
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 0.9rem;
    }
}
