/* =========================================================================
   EDS Performance — WordPress additions (front end).
   Adds only what index.html never needed; style.css stays the source of truth.
   ========================================================================= */

/* Logged-in users: keep the fixed header and mobile menu below the admin bar. */
.admin-bar .eds-header { top: 32px; }
@media (max-width: 1099px) { .admin-bar .eds-nav { top: calc(var(--header-height) + 32px); } }
@media (max-width: 782px) {
  .admin-bar .eds-header { top: 46px; }
  .admin-bar .eds-nav { top: calc(var(--header-height) + 46px); }
}

/* Text pages (Privacyverklaring): room for the fixed header, readable text. */
.eds-page { padding-top: calc(var(--header-height) + var(--space-14)); }
.eds-page .eds-heading { margin-bottom: var(--space-8); }
.eds-prose { max-width: 760px; }
.eds-prose > * + * { margin-top: var(--space-4); }
.eds-prose p, .eds-prose li { font-size: 16px; line-height: 24px; color: var(--text-secondary); }
.eds-prose h2, .eds-prose h3 { margin-top: var(--space-8); font-family: var(--font-display); font-weight: 500; text-transform: uppercase; color: var(--text-primary); }
.eds-prose h2 { font-size: 24px; line-height: 30px; }
.eds-prose h3 { font-size: 20px; line-height: 26px; }
.eds-prose ul, .eds-prose ol { padding-left: 1.25em; list-style: revert; }
.eds-prose a { color: var(--red-500); text-decoration: underline; text-underline-offset: 3px; }
.eds-prose a:hover { color: var(--text-primary); }
