/* Team Banner */
/* .sits-team {
    width: 100%;
    height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: table;
    background-attachment: fixed;
    margin-bottom: 50px;
    background-image: url(assets/blurredformem.JPG);
    min-height: 100%;
    margin-left: 0;
} */

/* Team Cards */
.profile {
    margin: 20px;
    text-align: center;
    background-color: #E8E7E3;
    background-image: linear-gradient(to bottom right, #C6DAF7, #CEAFEC);
    padding: 30px 25px;
    border-radius: 25px;
    width: 250px;
    max-width: 300px;
}

.profile .name {
    padding-top: 10px;
    font-size: 18px;
    font-weight: 800;
}

.profile .position {
    padding: 5px 0;
}

.profile .feature-text {
    margin: 0 0 auto;
    padding-bottom: 10px;
    color: rgb(122, 122, 122);
    line-height: 20px;
}

.profile img {
    border-radius: 50%;
    width: 205px;
    min-width: 205px;
    height: 205px;
    min-height: 205px;
    flex-shrink: 0;
    margin-bottom: 2%;
    background: #FFF;
    object-fit: cover;
    object-position: center top;
}

.team-section {
    background: var(--color-bg-2);
    padding: 20px;
    width: 90%;
}

.team-section section {
    flex-wrap: wrap;
}

.team-section h2 {
    color: white;
    font-size: 2em;
}

.team-section p {
    color: white;
    font-size: 1.2em;
}

/* Contact Buttons */
.profile button {
    margin-top: auto;
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    background: #FCFCFD;
    box-shadow: 0px 2px 4px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #d6d6e7;
    height: 48px;
    padding: 0 32px;
    font-size: 18px;
    border-radius: 6px;
    color: #36395a;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.profile button:hover {
    color: #03a9f4;
    background-color: white;
    box-shadow: 0px 4px 8px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #d6d6e7;
    transform: translateY(-2px);
}

.profile button:active {
    box-shadow: inset 0px 3px 7px #d6d6e7;
    transform: translateY(2px);
}

.mission-statement {
    font: bold 4.5em/1.5 sans-serif;
    color: #185a9d;
    text-transform: uppercase;
    background: linear-gradient(#4568dc, #b06ab3, #f4e2d8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-attachment: fixed;
}

.mission-statement h1 {
    font-family: sans-serif;
    text-align: center;
    font: bold 4.5em/1.5 sans-serif;
    color: #5CA17C;
    font-size: 30px;
    margin: 0 10%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .profile {
        width: calc(100% - 40px);
        max-width: 280px;
        margin: 10px auto;
        padding: 20px 15px;
    }

    .profile img {
        width: 150px;
        min-width: 150px;
        height: 150px;
        min-height: 150px;
    }

    .team-section {
        width: 95%;
        padding: 15px;
    }

    .team-section h2 {
        font-size: 1.5em;
    }

    .team-section section {
        flex-direction: row;
        justify-content: center;
    }

    .mission-statement {
        font-size: 2em;
    }

    .mission-statement h1 {
        font-size: 20px;
        margin: 0 5%;
    }
}

@media (max-width: 480px) {
    .profile {
        max-width: 100%;
    }

    .profile img {
        width: 120px;
        min-width: 120px;
        height: 120px;
        min-height: 120px;
    }
}
