.page-container {
    width: min(100% - 40px, var(--site-max-width));
    margin: 0 auto;
}

.page-offset {
    padding-top: calc(var(--nav-height-desktop) + 6px);
}

.section-heading {
    font-size: clamp(28px, 2.4vw, 40px);
    line-height: 1.2;
    color: var(--color-text-strong);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .page-offset {
        padding-top: var(--nav-height-mobile);
    }
}
