.team {
    margin: var(--space-4xl) auto;
}
.team .titles {
    text-align: center;
}
.team .titles .italic {
    color: var(--green);
    font-family: var(--font);
    font-size: var(--size-245);
    font-style: italic;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -12px;
}

.team .titles .normal {
    color: var(--green);
    font-family: var(--font);
    font-size: var(--size-297);
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin: -50px auto var(--space-2xl) 25%;
}

.team .members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: var(--space-77);
    grid-column-gap: calc(100vw - 90%);
}

.team .members .name {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-32);
    font-style: normal;
    font-weight: 700;
    line-height: 150%; 
}
.team .members .role {
    color: var(--grey-two);
    font-family: var(--font-second);
    font-size: var(--size-24);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}
.team .members .member {
    position: relative;
    width: 100%;
    max-width: 450px;
}
.team .members .member::after {
    content: "";
    display: block;
    background: var(--white);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -10px;
}

@media (min-width: 769px) and (max-width: 1600px) {
.team .members {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--space-70);
}
.team .members .member {
    max-width: 100%;
}
}

@media (max-width: 993px) {
.team {
    margin: var(--space-2xl) auto;
}
.team .titles .normal {
    margin: -20px auto var(--space-sm) 0%;
}
}

@media (max-width: 768px) {
.team .members {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: var(--space-35);
}
.team .members .member {
    max-width: 100%;
}
}