/* V108 · one discovery density across projects and exhibitions.
 *
 * Multi-day projects and exhibitions are both browseable, long-running
 * destinations.  Letting the former expand to half-width while the latter
 * stayed on a three-card shelf made one page look like two unrelated design
 * systems.  Keep the same three-card scan rhythm at the user's real desktop
 * content width. Mobile deliberately keeps the existing one-card rail. */

@media (min-width: 901px) {
  .home-screen .home-project-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(14px, 1.15vw, 18px);
  }

  .home-screen .home-project,
  .home-screen .flex-field .home-exhibition {
    min-width: 0;
  }

  .home-screen .home-project > .home-exhibition__content {
    padding-inline: 2px;
  }
}

@media (min-width: 1100px) {
  .home-screen .home-project-list,
  .home-screen main[data-home-layout="grid"] .home-event-list,
  .home-screen--week main[data-home-layout="grid"] .week-day .home-event-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-screen main[data-home-layout="grid"] .home-event-list .home-event:not(.home-event--text-only) {
    grid-template-columns: clamp(118px, 10vw, 148px) minmax(0, 1fr);
  }
}
