/* Page layout styles */

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
}

/* Pages whose first content element is a hero: let the hero touch the header */
.page:has(> .hero:first-child) {
    padding-top: 0;
}

/* -------------------------------------------------------
   Vertical rhythm between content sections
------------------------------------------------------- */
.page--standard > * + *,
.page--news-overview > * + * {
    margin-top: var(--spacing-xl);
}
