/* ========================= */
/* VIDEO SECTION */
/* ========================= */

.video {
  padding: 4rem 0;
}


.video__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}


.video__card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.video__card iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.video__card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 15px 30px rgba(0,0,0,0.4),
    0 0 25px rgba(37, 99, 235, 0.25);
}



@media (min-width: 768px) {
  .video__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 1024px) {
  .video__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}