@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:wght@400&display=swap');

/* === CATEGORY PAGE LINK (kept if used elsewhere) === */
.view-leadership-program-category-page-link-wrapper {
    text-align: center;
    margin: 20px auto 0;
}

.view-leadership-program-category-page-link {
    display: inline-block !important;
    color: #1976d2 !important;
    font-weight: bold !important;
    font-size: 18px !important;
    font-family: 'Averia Serif Libre', serif !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}

.view-leadership-program-category-page-link:hover {
    color: #FFCC33;
    text-decoration-color: #FFCC33;
}

/* === LEARN MORE BUTTON – CORRECT BRANDING === */
.leadership-learn-more-btn-wrapper {
    text-align: center;
    margin: 25px auto 0;
}

.leadership-learn-more-btn {
    display: inline-block !important;
    background-color: #446344 !important;     /* Primary Green – Background */
    color: #FFFFFF !important;                /* White – Text */
    font-family: 'Averia Serif Libre', serif !important;
    font-weight: bold !important;
    font-size: 18px !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent !important;
}

.leadership-learn-more-btn:hover,
.leadership-learn-more-btn:focus,
.leadership-learn-more-btn:active {
    background-color: #A3C586 !important;     /* Accent Green – Active/Hover Background */
    color: #446344 !important;                /* Primary Green – Active Text */
    border: 2px solid #446344 !important;     /* Dark Green Border */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}