/* ============================================= */
/* LEADERSHIP PROFILE PAGE - PAHCS */
/* ============================================= */

.leadership-profile {
    padding: 100px 20px 120px;
    background: #f8f9fa;
    min-height: 100vh;
}

.leadership-profile .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Back Button */
.back-link {
    display: inline-flex;
    align-items: center;
    color: #1d3557;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #e63946;
    transform: translateX(-4px);
}

/* Main Grid */
.profile-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}

/* Image */
.profile-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.profile-image:hover img {
    transform: scale(1.03);
}

/* Content */
.profile-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #1d3557;
    margin-bottom: 8px;
}

.position {
    font-size: 1.25rem;
    color: #e63946;
    font-weight: 600;
    margin-bottom: 8px;
}

.organisation,
.country {
    font-size: 1.1rem;
    color: #1d3557;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Biography Box */
.bio {
    margin-top: 30px;
    line-height: 1.85;
    font-size: 1.06rem;
    color: #333;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.bio h2 {
    color: #1d3557;
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 1.55rem;
}

/* Responsive */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-image img {
        max-width: 340px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .leadership-profile {
        padding: 80px 15px 100px;
    }
    
    .profile-content h1 {
        font-size: 2.15rem;
    }
    
    .bio {
        padding: 30px;
    }
}