.team-member {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    transition: 0.4s;
    cursor: grab;
}
.team-image {
    background: linear-gradient(0deg, rgb(78 148 79 / 25%), transparent);
    padding: 4rem 1rem 0;
    align-items: end;
    display: flex;
    justify-content: center;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: 0.4s;
}
.team-member:hover .team-image {
    background: linear-gradient(0deg, rgb(78 148 79 / 75%), transparent);
}
.team-member .s-title {
    font-size: clamp(14px, 2vw, 18px);
    transition: 0.4s;
}
.team-member:hover .s-title {
    color: var(--color1);
}
.team-position {
    font-size: clamp(12px, 2vw, 14px);
}
.team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.team-social a {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.4s;
}
.team-social a:hover {
    color: var(--color1);
}