.section {
    padding: 1.5rem 0;
}

.section .section__header {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    text-align: center;
}

.section .section__title {
    font-family: var(--hero-font-family);
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    margin: 0;
}

.section .section__subtitle {
    font-size: 1rem;
    line-height: 1.37;
    color: var(--on-surface-variant);
}

/* PAGE STYLES */
@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section .section__header {
        margin-bottom: 2rem;
        gap: 1.25rem;
    }

    .section .section__title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .section .section__subtitle {
        font-size: 1.125rem;
        line-height: 1.5rem;
        max-width: 702px;
        align-self: center;
    }

}