.team-grid-block {
    text-align: center;
}

.team-grid-block .intro {
    padding: 40px 0 52px;
}

.team-grid-block .intro .pre-title,
.team-grid-block .intro .block-title,
.team-grid-block .intro .copy-wrap,
.team-grid-block .intro .btn-wrap {
    max-width: 710px;
    margin: auto;
}

.team-grid-block .intro .pre-title {
    color: var(--secondary_color);
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-grid-block .intro .block-title {
    color: #0c0d0d;
    font-family: 'Calluna';
    font-size: 55px;
    font-weight: 600;
    line-height: 60px;
}

.team-grid-block .intro .copy-wrap {
    margin-top: 30px;
}

.team-grid-block .intro .copy-wrap p {
    color: #4f5459;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
}

.team-grid-block .intro .copy-wrap p:last-of-type {
    margin-bottom: 0;
}

.team-grid-block .intro .btn {
    margin-top: 24px;
}

.team-grid-block .intro .team-photo {
    margin-top: 40px;
}

.team-grid-wrap {
    background-color: #f6f7f7;
    padding: 52px 0;
}

.team-grid-wrap .inner {
    display: grid;
    column-gap: 28px;
    row-gap: 28px;
}

.team-grid-wrap .inner .team-single {
    display: grid;
    grid-template-rows: 300px 1fr;
}

.team-grid-wrap .inner .team-single img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: top center;
}

.team-grid-wrap .inner .team-single .info {
    background-color: #002d6b;
    padding: 20px;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.team-grid-wrap .inner .team-single .info .name-title-wrap .name {
    font-family: 'Calluna';
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 700;
    margin: 0;
}

.team-grid-wrap .inner .team-single .info .name-title-wrap .title {
    color: var(--Grays-0, #fff);
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 16px;
}

.team-grid-wrap .inner .team-single .info a {
    color: #fff;
    font-family: 'Poppins';
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    line-height: 150%;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.team-grid-wrap .inner .team-single .info a:after {
    display: block;
    content: '';
    width: 16px;
    min-width: 16px;
    height: 17px;
    background: url('../../images/button-arrow.png') no-repeat;
    background-size: contain;
}

@media screen and (min-width: 430px) {
    .team-grid-wrap .inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .team-grid-wrap .inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .team-grid-block .intro {
        padding: 80px 0 104px;
    }

    .team-grid-wrap {
        padding: 104px 0;
    }

    .team-grid-wrap .inner {
        grid-template-columns: repeat(4, 1fr);
    }
}