.theatre-invite {
  padding: 50px clamp(24px, 6vw, 110px) 70px;
  background: var(--color-bg);
}
.theatre-invite__card {
  max-width: 1260px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #161916;
  border: 1px solid #292e28;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
.theatre-invite__content {
  padding: clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.theatre-invite__eyebrow {
  font: 500 10px var(--font-body);
  letter-spacing: 0.16em;
  color: #b5bcae;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.theatre-invite h2 {
  font: 400 clamp(30px, 3.3vw, 48px) / 1.08 var(--font-heading);
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}
.theatre-invite__content > p:not(.theatre-invite__eyebrow) {
  font: 12px/1.8 var(--font-body);
  color: #b6bfaf;
  max-width: 360px;
  margin: 0 0 24px;
}
.theatre-invite__link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: #161916;
  background: #f6f7f2;
  padding: 13px 19px;
  border-radius: 6px;
  font: 500 12px var(--font-body);
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.theatre-invite__link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.theatre-invite__link:active {
  transform: translateY(1px);
}
.theatre-invite__link:focus-visible {
  outline: 2px solid white;
  outline-offset: 5px;
}
.theatre-invite__content > small {
  font: 9px var(--font-body);
  color: #9ca794;
  margin-top: 14px;
}
.theatre-invite__image {
  position: relative;
  min-height: 350px;
}
.theatre-invite__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.theatre-invite__image:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #161916, transparent 35%),
    linear-gradient(0deg, #161916bb, transparent 50%);
}
.theatre-invite__caption {
  position: absolute;
  bottom: 25px;
  left: 30px;
  z-index: 1;
  font: 10px var(--font-body);
  letter-spacing: 0.08em;
  color: #e2e7dd;
}
.theatre-invite__caption span {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0;
  color: #b5bead;
}
@media (max-width: 767px) {
  .theatre-invite {
    padding: 24px 20px 50px;
  }
  .theatre-invite__card {
    grid-template-columns: 1fr;
  }
  .theatre-invite__image {
    min-height: 220px;
    order: -1;
  }
  .theatre-invite__image:after {
    background: linear-gradient(0deg, #161916, transparent 60%);
  }
  .theatre-invite__content {
    padding: 26px;
  }
  .theatre-invite__caption {
    bottom: 18px;
    left: 26px;
  }
}
