.team h2 {
    font-weight: normal;
}

.team-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
}

.team-list + .subtitle,
.team-list + .team-list {
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .team h2 {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .team-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1025px) {
    .team-list {
        grid-gap: 80px;
    }

    .team .subtitle {
        margin-bottom: 60px;
    }

    .team-list + .subtitle,
    .team-list + .team-list {
        margin-top: 80px;
    }
}
