.hero-standup::before {
  background-image: url('/assets/images/standup-hero-showcase.webp');
}

.standup-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.standup-hero-media {
  display: flex;
  justify-content: center;
}

.standup-hero-figure {
  max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.standup-hero-figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.standup-performers-grid {
  align-items: center;
}

.standup-performer-media {
  display: flex;
  justify-content: center;
}

.standup-performer-figure {
  max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.standup-performer-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standup-series-grid {
  align-items: stretch;
}

.standup-venues-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr);
}

.standup-tickets-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: stretch;
}

.standup-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.standup-crosslinks ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.standup-crosslinks a {
  font-size: var(--font-size-sm);
}

.standup-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.standup-disclaimer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (max-width: 960px) {
  .standup-intro-grid,
  .standup-tickets-grid,
  .standup-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .standup-hero-figure,
  .standup-performer-figure {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .standup-cta-row {
    flex-direction: column;
  }

  .standup-disclaimer-links {
    flex-direction: column;
  }
}
