.videos {
  padding: 8rem 6vw;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 6vw;
  align-items: center;
  background: #0d0d0d;
}

.videos h2 {
  margin: .1em 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.4rem, 6.5vw, 6.5rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.035em;
}

.videos-copy > p:last-child {
  max-width: 460px;
  color: #aaa;
  line-height: 1.7;
}

.videos-placeholder {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
  border: 1px solid #ffffff22;
  background: linear-gradient(135deg, #1b1b1b, #090909);
}

.videos-placeholder::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  background: var(--orange);
  transform: rotate(-18deg);
  opacity: .75;
}

.video-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  padding-left: .35rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1.7rem;
}

.videos-placeholder strong {
  position: relative;
  z-index: 1;
  font: 800 .86rem "Barlow Condensed", sans-serif;
  letter-spacing: .18em;
}

@media (max-width: 800px) {
  .videos {
    grid-template-columns: 1fr;
    padding: 6rem 6vw;
    gap: 2.5rem;
  }

  .videos-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .videos h2 {
    font-size: 3.7rem;
  }

  .videos-placeholder {
    min-height: 260px;
  }
}
