#team-block {
    padding: 80px 0px 40px;
    background-color: var(--bg-light);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#team-block .team-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#team-block .item-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 85px;
    height: auto;
}

#team-block .photo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 255px;
}

#team-block .photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#team-block .info {
    display: flex;
    flex-direction: column;
    position: absolute;
    min-height: 85px;
    overflow: hidden;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 1px solid var(--white);
    padding: 20px;
    transition: 0.3s;
    background: var(--white);
}

#team-block .post {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 5px;
}

#team-block .name {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    font-family: var(--second-family);
    margin-bottom: 20px;
}

#team-block .team-item:hover .info {
    border-color: var(--bg-dark);
}

#team-block .contacts {
    display: none;
}

#team-block .team-item:hover .contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
}

#team-block .contact-item {
    display: flex;
    flex-direction: column;
}

#team-block .cont-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--main-text);
}

#team-block a {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--primary);
}

#team-block a:hover {
    color: var(--hover);
}

@media (max-width: 1300px) {
    #team-block .item-wrapper {
        padding-bottom: 60px;
    }

    #team-block a {
        font-size: 14px;
        white-space: nowrap;
    }

    #team-block .cont-title {
        font-size: 12px;
    }

    #team-block .name {
        margin-bottom: 10px;
        font-size: 14px;
    }

    #team-block .info {
        padding: 5px;
    }

    #team-block .info {
        min-height: 50px;
    }
}

@media (max-width: 996px) {
    #team-block {
        padding: 30px 0px;
    }
}