.team__before_title {
    display: block;
    text-align: center;
    color: #6b7280;
}

.team__title {
    padding: 10px 0 15px 0;
}

.team__items {
    display: grid;
    gap: 25px;
}

.team__item {
    backdrop-filter: blur(8px);
    background-image: linear-gradient(to right bottom, rgb(255, 255, 255) 0%, oklab(0.97 -0.00371685 -0.0134976 / 0.1) 50%, oklab(0.985 -0.00075442 -0.00185226 / 0.2) 100%);
    border: 1px solid;
    border-color: oklab(0.928 -0.000571842 -0.00597269 / 0.5);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    cursor: pointer;
    transition-duration: .3s;
}

.team__item:hover {
    background-image: linear-gradient(to right bottom, rgb(255, 255, 255) 0%, oklab(0.97 -0.00371685 -0.0134976 / 0.3) 50%, oklab(0.985 -0.00075442 -0.00185226 / 0.4) 100%);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-color: oklab(0.729884 0.16093 0.0369245 / 0.3);
}

.team__icon {
    background-image: linear-gradient(to right bottom, oklab(0.729884 0.16093 0.0369245 / 0.1) 0%, oklab(0.36342 -0.000455797 -0.127774 / 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transition-duration: .3s;
}

.team__item:hover .team__icon {
    background-image: linear-gradient(to right bottom, oklab(0.729884 0.16093 0.0369245 / 0.2) 0%, oklab(0.36342 -0.000455797 -0.127774 / 0.2) 100%);
    scale: 110%;
}

.team__img {
    min-width: 40px;
    width: 40px;
    height: 40px;
}

.team__name {
    margin: 0;
    text-align: center;
}

.team__position {
    text-align: center;
    color: #fd768a;
}

.team__experience {
    text-align: center;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .team__items {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 992px) {
    .team__items {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}