.video-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 5%, rgba(var(--accent-rgb), .14), transparent 28rem),
    var(--deep);
  color: var(--white);
}

.video-section .section-heading > p,
.video-section .section-heading--split > p {
  color: rgba(255, 255, 255, .68);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.8rem, 2vw, 1.4rem);
}

.video-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  min-width: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #090c0b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.video-grid--2 .video-card {
  aspect-ratio: 16 / 10;
}

.video-card__facade {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .9rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 0;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), .34), transparent 55%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 18px),
    var(--deep-2);
  color: var(--white);
  text-align: center;
  transition: background .25s ease, transform .25s ease;
}

.video-card__facade::after {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .14);
  pointer-events: none;
}

.video-card__facade:hover {
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), .52), transparent 58%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 18px),
    var(--deep-2);
}

.video-card__play {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: var(--accent);
  color: var(--deep);
  font-size: 1.15rem;
  box-shadow: 0 15px 38px rgba(0, 0, 0, .2);
  transition: transform .22s ease;
}

.video-card__facade:hover .video-card__play {
  transform: scale(1.08);
}

.video-card__facade strong {
  max-width: 24ch;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.video-card__facade > span:last-child {
  color: rgba(255, 255, 255, .58);
  font-size: .7rem;
}

.video-card__frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
}

@media (max-width: 760px) {
  .video-grid,
  .video-grid--3 {
    grid-template-columns: 1fr;
  }

  .video-card,
  .video-grid--2 .video-card {
    aspect-ratio: 9 / 14;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-card__facade,
  .video-card__play {
    transition: none;
  }
}
