/* Moderate desktop width refinement.
 * MEDOS should feel more open than the original 1240px layout without
 * stretching the whole page across large monitors. Component-specific text
 * measures remain unchanged for readability.
 */

/* All refreshed public pages use the same sticky header model. The historical
 * base stylesheet still declares a fixed 104px header; keeping it fixed while
 * removing the old 104px main padding would hide the hero underneath it.
 * Sticky keeps the navigation visible while making it participate in flow. */
html.refresh-root .site-header {
  position: sticky;
  inset: 0 0 auto;
}

@media (min-width: 1280px) {
  :root {
    --refresh-max: 1500px;
  }
}
