/**
 * Tab Titles Styling - Services Page
 *
 * Makes all tab titles display in 2 lines with uniform height
 * Does NOT affect tab functionality (tabs already work in services)
 */

/* Make all tab navigation items have consistent height */
.tab-nav-list .tab-nav {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 80px !important;
    align-items: center !important;
}

/* Center the title text vertically within the tab and force 2-line layout */
.tab-nav-list .tab-nav .tab-title {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    max-width: 200px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    white-space: normal !important;
}
