.shows-page,
.shows-shell { background: var(--white); }

.shows-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 66px;
  align-items: center;
  padding: 7px 12px 8px;
  background: var(--white);
  border-bottom: var(--border);
}

.shows-title-lockup { display: flex; min-width: 0; align-items: center; gap: clamp(14px, 2vw, 30px); }
.shows-header h1 { margin: 0; font-family: var(--display); font-size: clamp(44px, 5.4vw, 72px); font-weight: 900; letter-spacing: -0.06em; line-height: 0.76; }
.shows-title-lockup > span { font-family: var(--display); font-size: clamp(10px, 1.1vw, 15px); font-weight: 900; white-space: nowrap; }

.show-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background: var(--black); border-bottom: var(--border); }
.show-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: var(--white); border-right: var(--border); border-bottom: var(--border); outline: 0; }
.show-card:nth-child(even) { border-right: 0; }
.show-cover { position: relative; overflow: hidden; aspect-ratio: 16 / 9; margin: 0; background: var(--black); border-bottom: var(--border); }
.show-cover::after { position: absolute; inset: 12px; content: ""; pointer-events: none; border: 1px solid rgba(255, 255, 255, 0.46); transition: inset 120ms linear, border-color 120ms linear; }
.show-cover img { display: block; width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: filter 150ms linear, transform 150ms ease-out; }
.show-info { display: flex; min-height: clamp(190px, 20vw, 280px); flex: 1; flex-direction: column; justify-content: space-between; gap: 28px; padding: clamp(18px, 2.7vw, 40px); transition: color 120ms linear, background-color 120ms linear; }
.show-title { max-width: 100%; margin: 0; font-family: var(--display); font-size: clamp(28px, 3.55vw, 56px); font-weight: 900; line-height: 0.84; text-transform: uppercase; }
.show-title-text { max-width: 100%; overflow-wrap: break-word; }
.show-title small { display: inline-block; margin-top: 0.18em; font: inherit; font-size: 0.52em; letter-spacing: -0.01em; }
.show-meta { display: flex; flex-wrap: wrap; margin: 0; font-size: clamp(11px, 1.3vw, 17px); font-weight: 700; line-height: 1.1; text-transform: uppercase; }
.show-meta span { display: inline-flex; align-items: center; }
.show-meta span:not(:last-child)::after { margin: 0 0.55em; color: var(--blue); content: "✦"; font-size: 0.72em; }
.show-card:hover .show-info,
.show-card:focus-visible .show-info { color: var(--white); background: var(--blue); }
.show-card:hover .show-meta span:not(:last-child)::after,
.show-card:focus-visible .show-meta span:not(:last-child)::after { color: var(--white); }
.show-card:hover .show-cover img,
.show-card:focus-visible .show-cover img { filter: contrast(1.08); transform: scale(1.015); }
.show-card:hover .show-cover::after,
.show-card:focus-visible .show-cover::after { inset: 8px; border-color: var(--blue); }
.shows-footer { border-top: 0; }

@media (max-width: 680px) {
  .shows-header { min-height: 58px; padding: 6px 8px 7px; }
  .shows-header h1 { font-size: clamp(38px, 12vw, 54px); }
  .shows-title-lockup > span { overflow: hidden; font-size: 9px; text-overflow: ellipsis; }
  .show-grid { grid-template-columns: 1fr; }
  .show-card,
  .show-card:nth-child(even) { border-right: 0; }
  .show-info { min-height: 178px; }
  .show-title { font-size: clamp(26px, 8.2vw, 42px); }
}

@media (prefers-reduced-motion: reduce) {
  .show-cover img,
  .show-cover::after,
  .show-info { transition: none; }
}
