.roots-team-profile-info {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
}

.roots-team-profile-info__heading {
    color: #2a5c45;
    margin: 0 0 22px;
}

.roots-team-profile-info__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.roots-team-profile-info__pills,
.roots-team-profile-info__languages {
    display: grid;
}

.roots-team-profile-info__pill {
    background: #edf2f0;
    color: #174c3b;
    display: block;
}

.roots-team-profile-info__socials {
    display: flex;
    flex-wrap: wrap;
}

.roots-team-profile-info__social-link {
    align-items: center;
    background: #edf2f0;
    border-radius: 50%;
    color: #174c3b;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    width: 38px;
}

.roots-team-profile-info__social-link:hover,
.roots-team-profile-info__social-link:focus {
    background: #2a5c45;
    color: #fff;
    transform: translateY(-1px);
}

.roots-team-profile-info__social-link svg {
    fill: currentColor;
}

.roots-team-editor-note {
    background: #f5f7f6;
    border-left: 3px solid #2a5c45;
    color: #33433c;
    font-size: 12px;
    margin: 10px 0 0;
    padding: 8px 10px;
}

@media (max-width: 1024px) {
    .roots-team-profile-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .roots-team-profile-info {
        grid-template-columns: minmax(0, 1fr);
    }
}
