/* Committee Page Styles - GAPM 2026 */
/* Page title styling moved to page-title-common.css */

/* Section Headers - Clean and Compact */
.committee-section-title {
    text-align: center;
    margin: 30px 0 20px 0;
}

.committee-section-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #083281;
    margin: 0;
    padding: 8px 15px;
    background: #f8f9ff;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid #e0e6ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.committee-section-title h3 i {
    margin-right: 8px;
    color: #3785C4;
    font-size: 16px;
}

/* Committee Grid Spacing */
.committee-row {
    margin-bottom: 25px;
}

/* Main Header Center Alignment */
.committee-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Committee Section Background */
.committee-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.committee-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(8, 50, 129, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.committee-section:after {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(55, 133, 196, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* Medical Pattern Overlay */
.committee-grid:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(8, 50, 129, 0.02) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(55, 133, 196, 0.02) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
    pointer-events: none;
    z-index: 1;
}

.committee-grid {
    position: relative;
    z-index: 2;
}



/* CTA Button Styles */
.committee-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 24px;
    margin: 0 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.committee-cta .cta-button i {
    margin-right: 8px;
}

.committee-cta .cta-button.primary {
    background-color: #083281;
    color: white;
}

.committee-cta .cta-button.secondary {
    background-color: #f8f9ff;
    color: #083281;
    border: 2px solid #083281;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .committee-section-title h3 {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .committee-section-title {
        margin: 20px 0 15px 0;
    }
    
    .committee-row {
        margin-bottom: 20px;
    }
    
    /* Mobile CTA Button Fixes */
    .committee-cta .cta-buttons-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .committee-cta .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0;
        padding: 15px 20px;
        font-size: 16px;
        text-align: center;
        justify-content: center;
    }
    
    .committee-cta .cta-button span {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .committee-cta .cta-content {
        text-align: center;
        padding: 0 20px;
    }
} 