.team-tab {
    display: none;
}
.team-tab.active {
    display: block;
}
.block-editor-page .team-tab{
    display:block !important;
}
.team-inner-tab {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.team-tab .team-tab__single-item.team-tab__text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 1 / span 2;
    max-width: 504px;
}
.team-tab .team-tab__single-item.team-tab__employee-item {
    border-radius: 24px;
    background: var(--west-side-100);
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.team-tab .team-tab__single-item.team-tab__employee-item img {
    width: 128px;
    height: 128px;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 24px;
    object-fit: cover;
    object-position: top;
}
.team-tab .team-tab__single-item.team-tab__employee-item .team-tab__job-position {
     color: var(--west-side-800);
     margin-bottom: 8px;
    text-transform: uppercase;
 }
.team-tab .team-tab__single-item.team-tab__employee-item .team-tab__fullname {
    color: var(--west-side-950);
    margin-bottom: 16px;
}
.team-tab .team-tab__single-item.team-tab__employee-item .team-tab__bio {
    color: var(--west-side-800);
    margin-bottom: 0;
}
@media screen and (max-width:1024px) {
    .team-inner-tab {
         grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width:781px) {
    .team-inner-tab {
        grid-template-columns: repeat(2, 1fr);

    }
}
@media screen and (max-width:540px) {
    .team-tab .team-tab__single-item.team-tab__text-container {
        grid-column: 1 / span 1;
    }
    .team-inner-tab {
        grid-template-columns: repeat(1, 1fr);

    }
}