/* ============================================
   WCA CTA SECTION — CSS
   ============================================ */

.wca-cta-section {
    display: block;
    width: 100%;
    /* brand gold (matches the example); !important beats the element's inline
       --wca-cta-gold:#daa520 default */
    --wca-cta-gold: #c19c5c !important;
}

/* Win over the page-level custom CSS that pins these to 11px !important, and
   the inline gold, so the section matches the example. */
.wca-cta-section .wca-cta-subtitle {
    font-size: 16px !important;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.85) !important;
}
.wca-cta-section .wca-cta-btn {
    font-size: 14px !important;
    letter-spacing: 0.2em;
}
.wca-cta-section .wca-cta-italic {
    color: #c19c5c !important;
}

.wca-cta-inner {
    max-width: 48rem; /* ~max-w-3xl */
    margin: 0 auto;
    padding: 0 1.5rem; /* ~px-6 */
    text-align: center;
}

.wca-cta-subtitle {
    font-size: 16px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.wca-cta-heading {
    margin-top: 20px;
    font-family: var(--wca-font-display, 'Cormorant Garamond', Georgia, serif); /* ~font-display */
    color: var(--wca-cta-cream, #f9f6f0);
    font-size: clamp(48px, 7vw, 92px); /* grand, like the example (~96px) */
    line-height: 1.08;
    font-weight: 400;
}

.wca-cta-italic {
    font-style: italic;
    color: var(--wca-cta-gold, #DAA520);
}

.wca-cta-desc {
    margin: 1.5rem auto 0; /* ~mt-6 mx-auto */
    max-width: 36rem; /* ~max-w-xl */
    color: rgba(249, 246, 240, 0.7); /* ~text-cream/70 */
    line-height: 1.75;
    font-weight: 300;
}

/* ── Actions ────────────────────────────── */
.wca-cta-actions {
    margin-top: 2.5rem; /* ~mt-10 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* ~gap-4 */
}
@media (min-width: 640px) {
    .wca-cta-actions { flex-direction: row; }
}

.wca-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem; /* ~gap-3 */
    padding: 16px 40px; /* ~px-10 py-4 */
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.wca-cta-btn-primary {
    background-color: var(--wca-cta-gold, #c19c5c);
    color: #fff !important;
    border: 0;
}
.wca-cta-btn-primary:hover {
    background-color: var(--wca-cta-gold, #c19c5c);
    opacity: 0.88;
}

.wca-cta-btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.wca-cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.14);
    color: #fff !important;
}

.wca-cta-icon {
    width: 0.75rem; /* ~w-3 */
    height: 0.75rem; /* ~h-3 */
    transition: transform 0.3s ease;
}
.wca-cta-btn-primary:hover .wca-cta-icon {
    transform: translateX(0.125rem); /* ~translate-x-0.5 */
}
