.seoc-team {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.seoc-team article {
    width: calc(100% / 3 - 20px);
    margin: 10px;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.seoc-team article::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #29374b00 0%, #29374b5c 100%) 0 0 no-repeat padding-box;
}
.seoc-team div {
    position: absolute;
    z-index: 2;
    left: 15px;
    bottom: 15px;
    color: #fff;
}
.seoc-team h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}
.seoc-team p {
    margin: 0;
}
.seoc-team img {
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    position: relative;
    z-index: 0;
}
.seoc-team article:hover img {
    transform: scale(1.1);
}
.team-pos-t img {
    object-position: top;
}
.team-pos-b img {
    object-position: bottom;
}
.team-pos-l img {
    object-position: left;
}
.team-pos-r img {
    object-position: right;
}
.team-pos-c img {
    object-position: center;
}
.seoc-team article a {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .seoc-team article {
        width: calc(50% - 20px);
    }
}
@media (max-width: 400px) {
    .seoc-team {
        margin: 0;
    }
    .seoc-team article {
        width: 100%;
        margin: 10px 0;
    }
}