/**
 * World of Ace — Global Button Styles
 * Theme: TGS Design
 *
 * Site-wide button appearance. Font: Baloo Bhai 2, Medium (1rem), Semi Bold (600).
 * Uses flexbox for perfect vertical centering — font metrics in Baloo Bhai 2 are
 * uneven, so padding alone isn't enough.
 * Split out of header-styles.css 2026-06-21 (was never a header concern).
 */
.wp-element-button,
.wp-block-button__link {
    font-family: var(--wp--preset--font-family--baloo-bhai-2) !important;
    font-size: var(--wp--preset--font-size--medium) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    min-height: 2.5rem !important;          /* 40px — consistent across site */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1px 2.25rem 0 !important;      /* +1px top compensates Baloo Bhai 2 ascender bias */
    box-sizing: border-box !important;
}
