/* =============== LEADERSHIP PAGE =============== */

/* Hero Section */
.leadership-hero {
    background: linear-gradient(135deg, #2E3192 0%, #29B6E6 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.leadership-hero__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.leadership-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.leadership-hero__underline {
    display: block;
    width: 80px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    margin: 20px auto 0;
}

/* Leadership Sections */
.leadership-section {
    background: #fff;
    padding: 80px 0;
}

.leadership-section--alt {
    background: #f8f9fb;
}

.leadership-header {
    text-align: left;
    margin-bottom: 60px;
}

.leadership-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.leadership-section-title::after {
    content: '';
    /* position: absolute; */
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2E3192;
    border-radius: 2px;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Leadership Card */
.leadership-card {
    background: #fff;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.leadership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.leadership-card__img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f3f4f6;
}

.leadership-card__img_internation {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;

}

.leadership-card__img_internation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.leadership-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-card__img img {
    transform: scale(1.05);
}

.leadership-card__content {
    padding: 24px 20px;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    text-align: center;
}





.leadership-card__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin: 0 0 8px 0;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.leadership-card__position {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #555;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.leadership-card__link {
    display: inline-block;
    color: #29A7E0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    transition: color 0.2s ease;
}

.leadership-card__link:hover {
    color: #2E3192;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leadership-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 35px 25px;
    }
}

@media (max-width: 900px) {
    .leadership-section {
        padding: 60px 0;
    }

    .leadership-hero {
        padding: 60px 0;
    }

    .leadership-header {
        margin-bottom: 45px;
    }

    .leadership-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 30px 20px;
    }

    .leadership-card__img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .leadership-card__img {
        height: 240px;
    }

    .leadership-card__content {
        padding: 20px 16px;
    }

    .leadership-card__name {
        font-size: 14px;
    }

    .leadership-card__position {
        font-size: 12px;
    }

    .leadership-card__link {
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .leadership-hero {
        padding: 50px 0;
    }

    .leadership-section {
        padding: 50px 0;
    }

    .leadership-header {
        margin-bottom: 35px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .leadership-card__img {
        height: 300px;
    }

    .leadership-card__content {
        padding: 22px 18px;
    }

    .leadership-card__name {
        font-size: 15px;
    }

    .leadership-card__position {
        font-size: 12px;
    }
}

/* Text center utility */
.text-center {
    text-align: center;
}