.reel-section {
  color: #f4f0e8;
  background:
    radial-gradient(circle at 84% 10%, #ffffff0b, transparent 28%),
    #0a0b0d;
  padding: 112px 0 120px;
}

.reel-section__inner {
  width: min(1320px, calc(100vw - 40px));
  margin: 0 auto;
}

.reel-section__intro {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 48px;
}

.reel-section__intro h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.reel-section__frame {
  position: relative;
  overflow: hidden;
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid #ffffff24;
}

.reel-section__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (width <= 980px) {
  .reel-section__intro {
    grid-template-columns: 1fr;
  }

  .reel-section__frame {
    width: 100%;
  }
}

@media (width <= 720px) {
  .reel-section {
    padding: 76px 0 82px;
  }

  .reel-section__inner {
    width: calc(100vw - 24px);
  }

  .reel-section__intro {
    margin-bottom: 30px;
  }
}
