.videos {
  background: #0c0c0c;
  color: #fff;
}
.videos .section-title {
  color: #fff;
}
.videos .section-title:after {
  color: var(--gold);
}
.videos .section-intro {
  color: #c8c0b4;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  width: 100%;
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 12px 28px #0008;
  border: 1px solid #332b20;
}
.video-card.vertical {
  grid-column: span 3;
  aspect-ratio: 267/476;
}
.video-card.horizontal {
  aspect-ratio: 560/314;
  margin-top: 12px;
}
.video-card.horizontal:not(.youtube) {
  grid-column: 1 / -1;
  width: 100%;
}
.video-card.youtube {
  grid-column: span 4;
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-follow {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 32px;
}
.btn-facebook {
  background: #1877f2;
  color: #fff;
}
.btn-youtube {
  background: #ff0033;
  color: #fff;
}
@media(max-width:900px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
    margin: auto;
  }
  .video-card.vertical,
  .video-card.youtube {
    grid-column: span 1;
  }
  .video-card.horizontal {
    grid-column: 1 / -1;
  }
}
@media(max-width:560px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .video-card.horizontal {
    grid-column: 1 / -1;
    aspect-ratio: 560/314;
  }
  .video-card.vertical,
  .video-card.youtube {
    grid-column: 1 / -1;
  }
}
