/* styles/actualidad.css */

.actualidad {
  background-color: #f5f7fa;
  padding: 4rem 0;
}

.actualidad h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0a1833;
  position: relative;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.videos-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  max-width: 560px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.videos-grid iframe:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Móvil */
@media (max-width: 600px) {
  .actualidad {
    padding: 2rem 1rem;
  }

  .videos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1rem;
  }

  .videos-grid iframe {
    flex: 0 0 85%;
    max-width: 300px;
    scroll-snap-align: start;
  }
}
