.page_team_wrapper {
    width: 100%;
    padding-top: 85px;
}
.page_team_wrapper .titlebar {
    margin-bottom: 80px;
}
.page_team_wrapper .gb-container {
    max-width: 1664px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 40px;
}
.team_wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--global-color-9);
   
}
.team-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}
.team-posts .team_card {
    box-shadow: 0px 12px 20px 0px rgba(39, 56, 63, 0.10);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.team-posts .team_card .figure {
    /* max-height: 392px;
    height: 496px; */
    overflow: hidden;
    padding-top: 87%;
    position: relative;
}
.team-posts .team_card .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
}
.team-posts .team_card .context {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-top: 24px;
    background-color: #fff;
}
.team-posts .team_card .context h2 {
    font-size: 24px;
    /* color: #072433; */
    color: #000;
    margin-bottom: 8px;
}
.team-posts .team_card .context .job-title {
    /* color: #02C39A; */
    color: #072433;
    font-size: 16px;
    line-height: 1.25;
}
.team-posts .team_card .context .entry-content {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 16px;
    border-top: #f3f3f3 1px solid;
    color: #072433;
}
.team-posts .team_card .context .entry-content ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.team-posts .team_card .context .entry-content ul li {
    padding-bottom: 4px;
}
.team-posts .team_card .context .entry-content ul li:last-child {
    padding-bottom: 0px;
}

.team_wrapper .load_more_posts {
    margin-top: 60px;
    text-align: center;
}
.team_wrapper .button-style {
    color: #27383F;
    font-weight: 800;
    font-size: 16px;
    line-height: 150%;
    max-width: 188px !important;
    border: 2px solid #27383F;
    border-radius: 50px;
    text-decoration: none;
    background-color: transparent;
    padding: 14px 30px;
    display: inline-block;
}

@media screen and (max-width:1199px){
    .team-posts {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width:991px){
    .team-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:767px){
    .page_team_wrapper {
        padding-top: 40px;
    }
    .page_team_wrapper .titlebar {
        margin-bottom: 40px;
    }
    .team_wrapper {
        padding-top: 36px;
        padding-bottom: 47px;
    }
    .team_wrapper .load_more_posts {
        margin-top: 47px;
    }
}
@media screen and (max-width:599px){
    .team-posts {
        grid-template-columns: repeat(1, 1fr);
    }
}