.video-heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.4fr .6fr;
  margin-bottom: 60px;
}

.video-heading h2 {
  margin-bottom: 0;
  max-width: 780px;
}

.video-heading > p {
  color: #bec1b9;
  font-size: 1.15rem;
}

.video-grid {
  display: grid;
  gap: 42px 26px;
  grid-template-columns: repeat(3, 1fr);
}

.video-card {
  color: #fff;
  display: block;
  text-decoration: none;
}

.video-card__preview {
  aspect-ratio: 16 / 9;
  background: #090a08;
  border-radius: var(--radius);
  display: block;
  overflow: hidden;
  position: relative;
}

.video-card__preview img {
  height: 100%;
  object-fit: cover;
  transition: opacity .35s, transform .35s;
  width: 100%;
}

.play {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  bottom: 18px;
  box-shadow: 0 8px 30px #0007;
  display: flex;
  height: 56px;
  justify-content: center;
  left: 18px;
  position: absolute;
  transition: transform .2s;
  width: 56px;
}

.play span {
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--ink);
  border-top: 8px solid transparent;
  height: 0;
  margin-left: 4px;
  width: 0;
}

.video-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 19px;
}

.video-card__body strong {
  font-size: 1.15rem;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.video-card__body > span {
  color: var(--lime);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-card:hover .video-card__preview img {
  opacity: .82;
  transform: scale(1.04);
}

.video-card:hover .play {
  transform: scale(1.08);
}

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

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

  .video-heading {
    gap: 20px;
    margin-bottom: 42px;
  }
}
