/**
 * Reusable VfL CTA button — matches the green CTAs used on the homepage.
 * Apply by adding the class `vfl-cta-button` to any link, button, or
 * Elementor button (Advanced → CSS Classes).
 *
 * !important is used to defeat Elementor's per-instance generated CSS
 * (which is scoped by post ID and would otherwise outrank this rule).
 */

.vfl-cta-button,
a.vfl-cta-button,
.elementor-button.vfl-cta-button {
    display: inline-block !important;
    background: #40a639 !important;
    background-color: #40a639 !important;
    color: #ffffff !important;
    padding: 16px 48px !important;
    border: 0 !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: none;
    cursor: pointer;
}

.vfl-cta-button:hover,
a.vfl-cta-button:hover,
.elementor-button.vfl-cta-button:hover {
    background: #40a639 !important;
    background-color: #40a639 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 179, 46, 0.3);
}

.vfl-cta-button:focus,
.vfl-cta-button:active,
a.vfl-cta-button:focus,
a.vfl-cta-button:active {
    background: #40a639 !important;
    background-color: #40a639 !important;
    color: #ffffff !important;
    outline: none;
}

@media (max-width: 768px) {
    .vfl-cta-button,
    a.vfl-cta-button,
    .elementor-button.vfl-cta-button {
        padding: 14px 36px !important;
        font-size: 0.9rem !important;
    }
}
