/*--------------------------------------------------------------
# Global Partners Section
# Used on: About Us, Partnerships (and any future page)
# Data source: Customizer > Global Settings > Partners Section
--------------------------------------------------------------*/
.global-partners-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 1rem 60px;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

.partners-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 863px;
    text-align: center;
}

.partners-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #0A1837;
    margin: 0;
}

.partners-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #4A5565;
    margin: 0;
}

.partners-logo-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1232px;
    width: 100%;
    opacity: 0.6;
}

.partner-logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 220.8px;
    height: 128px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .global-partners-section {
        padding: 80px 2rem 40px;
    }
}

@media (max-width: 768px) {
    .partners-title {
        font-size: 32px;
    }
    .partners-subtitle {
        font-size: 16px;
    }
    .partner-logo-container {
        width: 160px;
        height: 100px;
    }
}
