.booking-videos {
  padding-top: clamp(1rem, 3vw, 2.5rem);
}

.booking-videos__inner {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.booking-videos__copy {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.booking-videos__copy h2 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 280;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

.booking-videos__copy p:not(.booking-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.booking-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.booking-video {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(480px 220px at 12% 0%, rgba(46, 229, 157, 0.09), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.booking-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.booking-videos__statement {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto;
  margin-top: 24px;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(244, 231, 186, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

.booking-videos__statement::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(2rem, 12vw, 8rem);
  left: clamp(2rem, 12vw, 8rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 231, 186, 0.55), transparent);
}

.booking-videos__statement p {
  font-family: 'Raleway', sans-serif;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.2rem, 1.45vw, 1.14rem);
  font-weight: 400;
  line-height: 1.8;
  text-wrap: pretty;
  text-align: justify;
}

@media (max-width: 820px) {
  .booking-videos__grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 14px;
  }

  .booking-videos__statement {
    padding: 1.35rem 1rem;
    border-radius: 14px;
    text-align: left;
  }

  .booking-videos__statement p {
    line-height: 1.65;
  }
}