/* Staging-only integration guard: prevents the existing four-column footer's intrinsic widths from overflowing at the approved 834px tablet checkpoint. */
@media (min-width: 821px) and (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(110px, 0.55fr));
    gap: 24px;
  }

  .footer-grid a {
    overflow-wrap: anywhere;
  }
}
