/* ── Leadership Page ── */

.Leadership {
    width: 100%;
    max-width: 130rem;
    margin: 0 auto;
    padding: 12rem 3rem 6rem;
}

/* Section header */

.Leadership .container {
    margin: 0;
    color: inherit;
}

.Leadership .heading {
    font-size: 5rem;
    text-align: center;
    color: yellow;
    margin-bottom: 1.5rem;
}

.Leadership .our-staff {
    font-size: 1.7rem;
    color: #c8dce8;
    line-height: 1.75;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 5rem;
}

/* Profile grid */

.profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 0;
}

/* Profile card */

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--second-bg-color);
    border-radius: 1.2rem;
    padding: 4rem 3.5rem 3.5rem;
    border-top: 3px solid var(--main-color);
    box-shadow: 0 .8rem 3rem rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex-basis: auto;
}

.profile:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.6rem 4rem rgba(0, 171, 240, 0.18);
}

/* Photo */

.profile .profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    border: 3px solid var(--main-color);
    transition: filter 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2.2rem;
    flex-shrink: 0;
}

.profile:hover .profile-img {
    filter: grayscale(0);
    box-shadow: 0 0 0 5px rgba(0, 171, 240, 0.25);
}

/* Name & title */

.user-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 .6rem;
    text-align: center;
    letter-spacing: .04rem;
}

.profile h5 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .12rem;
    text-transform: uppercase;
    color: yellow;
    text-align: center;
    margin-bottom: 2rem;
}

/* Divider */

.profile h5::after {
    content: '';
    display: block;
    width: 4rem;
    height: 2px;
    background: var(--main-color);
    margin: 1.2rem auto 0;
    opacity: 0.5;
}

/* Bio */

.profile p {
    font-size: 1.45rem;
    color: #c8dce8;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

/* ── Responsive ── */

@media screen and (max-width: 1024px) {
    .profiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media screen and (max-width: 700px) {
    .profiles {
        grid-template-columns: 1fr;
    }

    .Leadership {
        padding: 10rem 2rem 4rem;
    }

    .profile {
        padding: 3rem 2.5rem;
    }

    .Leadership .heading {
        font-size: 4rem;
    }

    .Leadership .our-staff {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .profile .profile-img {
        width: 130px;
        height: 130px;
    }

    .user-name {
        font-size: 2rem;
    }
}
