.team-list {
    padding: 120px 0px;
}

.team-list-main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.team-list-item {
    width: calc((100% / 4) - 15px);
    position: relative;
    padding: 420px 20px 20px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.team-list-item > img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
    transition: all 300ms ease;
}

.team-list-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000060;
}

.team-list-content {
    position: relative;
}

.team-list-content p {
    margin: 0px;
}

.team-list-item:hover img {
    scale: 1.02;
}

.team-list-item::after {
    background: linear-gradient(0deg, var(--background), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 120px;
    width: 100%;
    content:
    '';
    z-index: -1;
}