.show-page {
  padding: clamp(26px, 4vw, 58px) 0 clamp(48px, 7vw, 88px);
}

.show-page__shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.show-page__shell:not(.has-media) {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.show-page__media {
  position: sticky;
  top: 92px;
}

.show-page__flyer {
  overflow: hidden;
  border-radius: clamp(22px, 2.6vw, 32px);
  background: #120f0d;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.16);
}

.show-page__flyer img {
  display: block;
  width: 100%;
  height: auto;
}

.show-page__content {
  display: grid;
  gap: clamp(18px, 2.3vw, 28px);
  min-width: 0;
}

.show-page__back {
  justify-self: start;
  color: rgba(18, 18, 18, 0.66);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.show-page__back:hover,
.show-page__back:focus-visible {
  color: var(--bb-red-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.show-page__heading {
  display: grid;
  gap: 9px;
}

.show-page__title {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.8vw, 74px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.show-page__date {
  margin: 0;
  color: var(--bb-red-deep);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.show-page__status {
  display: inline-flex;
  justify-self: start;
  margin: 0;
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.show-page__status.is-available {
  background: #e7f4eb;
  color: #155b38;
}

.show-page__status.is-last_tickets {
  background: #fff0c7;
  color: #704700;
}

.show-page__status.is-sold_out {
  background: #f8dfe1;
  color: #891a20;
}

.show-page__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.show-page__fact {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: 18px;
  background: #fdf9f4;
}

.show-page__fact dt {
  margin: 0 0 4px;
  color: rgba(18, 18, 18, 0.54);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.show-page__fact dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.show-page__description {
  max-width: 62ch;
  color: rgba(18, 18, 18, 0.78);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
  white-space: pre-line;
}

.show-page__description p {
  margin: 0;
}

.show-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 2px;
}

.show-page__actions .show-page__ticket-button {
  min-width: min(100%, 230px);
}

.show-page__ticket-note {
  margin: 0;
  color: rgba(18, 18, 18, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .show-page__shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .show-page__media {
    position: static;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .show-page__title {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .show-page {
    padding-top: 18px;
  }

  .show-page__shell {
    gap: 22px;
  }

  .show-page__facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .show-page__actions {
    display: grid;
  }

  .show-page__actions .show-page__ticket-button,
  .show-page__actions .bb-pill-button {
    width: 100%;
    min-width: 0;
  }
}
