.about-pressures {
    margin-bottom: 64px;
    padding: 0 16px;
    
    h2 {
        text-align: center;
        margin: 64px 0 48px 0;
        font-size: 32px;
    }
    margin-bottom: 64px;
}

.about-solution {
    h2 {
        margin-bottom: 64px;
    }
}

.team {
    .team-card{
        margin-bottom: 64px;

        h2 {
            font-size: 32px;
            margin-bottom: 32px;
            text-align: center;
        }

        .photo-and-name-wrapper{
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            justify-content: center;

            img {
                width: 88px;
                height: 88px;
                border-radius: 44px;
            }
            .name-and-title {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            h3 { margin: 0 0 8px; }
            p  { margin: 0; }
        }

        .quote {
            background-color: var(--cobalt-background);
            padding: 16px 20px;
            border-left: 4px solid var(--cobalt);
            border-radius: 6px;

            h4 {
                margin-bottom: 8px;
            }
        }
    }
}

@media (min-width: 768px){
    .team {
        .team-card{
            h2 {
                font-size: 32px;
            }
        }
    }
}