.videos-page {
  background: var(--color-light);
}

.videos-page .videos-hero {
  background: var(--color-dark);
  color: var(--color-light);
  border-bottom: 1px solid rgba(185, 152, 99, 0.22);
}

.videos-hero-inner {
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.videos-eyebrow {
  margin: 0 0 1.4rem;
  color: var(--color-brass-light);
  font-size: 0.72rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.videos-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.videos-heading-row h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.videos-number {
  color: rgba(185, 152, 99, 0.42);
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.8;
  font-weight: 700;
}

.videos-gallery {
  background: var(--color-light);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
}

.videos-gallery-inner {
  width: min(1100px, 90%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  justify-content: center;
}

.video-card {
  min-width: 0;
  background: #111;
  border: 1px solid rgba(176, 141, 87, 0.32);
  padding: 0.55rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.video-frame {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.videos-page .videos-active {
  color: var(--color-brass-light);
}

@media (max-width: 700px) {
  .videos-hero-inner {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }

  .videos-heading-row {
    align-items: center;
  }

  .videos-heading-row h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .videos-number {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .video-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .video-frame {
    max-width: 390px;
  }
}
