.teamWrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 16px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.teamShortcode h1,.teamShortcode h2,.teamShortcode h3,.teamShortcode h4{
    color: black;
}

.teamName {
    padding-top: 40px;
    padding-bottom: 16px;
}

.userWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 16px 0;
    text-decoration: none;
    gap: 16px;
    width: calc(25% - 12px);
}

.userWrapper:last-child {
    border: none;
}

.userWrapper img {
    min-width: 100px;
    max-width: 100px;
    border-radius: 100%;
}

.userContent {
    display: flex;
    flex-direction: column;
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    color:#818181;
    align-items: center;
    height: 100%;
}

.userName {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
}

.userJobTitle {
    margin-top: 0;
    font-weight: 700;
}

.socialNetworks {
    display: flex;
    flex-direction: row;
    gap: 9px;
    margin-top: 0;
    height: 100%;
    align-items: flex-end;
}

.svg-social-icon {
    color: black;
    width: 18px;
    height: 18px;
}

.svg-social-icon:hover {
    color: darkgrey;
}

.userDescription {
    display: none;
}

h2.team-header {
    font-family: var(--cs-font-section-headings-family), sans-serif;
    font-weight: var(--cs-font-section-headings-weight);
    font-style: var(--cs-font-section-headings-style);
    letter-spacing: var(--cs-font-section-headings-letter-spacing);
    text-transform: var(--cs-font-section-headings-text-transform);
    border-bottom: 4px solid #e9ecef;
    padding-bottom: 0.5em;
    font-size: 1.5rem;
}

.userContent p {
    margin-bottom: .5rem;
    text-align: center;
}

@media screen and (max-width: 1250px) {
    .userWrapper {
        width: 30%;
    }
}
@media screen and (max-width: 1020px) {
    .userWrapper {
        width: 47%;
    }
}
@media screen and (max-width: 650px) {
    .userWrapper {
        width: 100%;
    }
}