/* TEAM LABEL (YELLOW TAG STYLE) */
.team-label{
    display:inline-block;
    background:#fde68a;
    padding:8px 20px;
    border-radius:5px;
    font-weight:600;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* CIRCLE IMAGE */
.team-circle{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #e5e7eb;
    transition:0.3s;
}

/* HOVER */
.team-circle:hover{
    transform:scale(1.08);
    border-color:#2563eb;
}
/* LABEL STYLE */
.team-label{
    background:#fde68a;
    padding:8px 20px;
    border-radius:6px;
    font-weight:600;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* MAIN IMAGE */
.team-circle-lg{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #2563eb;
}

/* MEMBERS */
.team-circle{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #e5e7eb;
    transition:0.3s;
}

.team-circle:hover{
    transform:scale(1.1);
    border-color:#2563eb;
}