/**
 * Module: Global Buttons
 * Purpose: Shape, Typography, and Animation only.
 * Colors are handled by Assets.php variables.
 */

/* 1. Base Pill Shape */
.medical-btn-pill .wp-block-button__link,
.wp-block-button__link {
    border-radius: 50px !important;
    padding: 10px 20px !important;
    font-weight: 500 !important;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: none !important;
    line-height: 1.2;
}

/* 2. Hover Physics (Lift & Brighten) */
.medical-btn-pill .wp-block-button__link:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.3) !important;
    background-color: var(--medical-accent-hover)!important;
    color: #ffffff!important;
}

/* 3. Outline Variant Structure */
.is-style-outline .wp-block-button__link {
    background-color: transparent !important;
    /* Color variables are applied by Assets.php based on class */
}
.wp-block-buttons.is-content-justification-center {
    justify-content:center!important;
}

/* Iatrica elegant CTA */
/* .medical-btn-pill {
    font-size: 0.8rem; 
    padding: 10px 20px; 
    text-decoration: none;
    color: var(--medical-accent); 
    font-weight: 700; 
    text-transform: uppercase;
}
.is-style-outline{
    border: 2px solid var(--medical-accent);
    border-radius: 50px; 
} */
