/*
 * Responsive overrides
 *
 * Component-level breakpoints live here so the core stylesheet remains easy
 * to scan. Existing responsive rules are preserved in style.css during the
 * utility-to-component migration to avoid changing cascade order.
 */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (min-width: 40rem) {
  .two-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 48rem) {
  .site-header-inner {
    height: 5rem;
    padding-inline: 2rem;
  }

  .brand-copy {
    font-size: 15px;
  }

  .section-container {
    padding: 5rem 2rem;
  }

  .section-title {
    font-size: var(--text-4xl);
    line-height: var(--text-4xl--line-height);
  }
}

@media (min-width: 64rem) {
  .desktop-navigation {
    display: flex;
  }

  .content-call-to-action .content-container {
    max-width: 80rem;
  }
}
