/* CONTENEDOR GENERAL */

.contenedor-videos {
  /* background-color: bisque; */
  margin-top: 40px;
  width: 100%;
  /* padding: 20px 40px; */
}

/* GRID VIDEOS */

.grid-videos {
  /* border:solid 8px rgb(255, 255, 255) ; */
  display: grid;
  justify-content: center;  
  align-items: center; 
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap:70px 10px;
  width: 100%;
}

/* VIDEO ITEM */

.video-item {
  /* border:solid 8px rgb(255, 255, 255) ; */
  padding: 0;
  margin: 0;
  display: grid;
  justify-content: center; /* Centrado horizontal */
  align-items: center;  

}

.video-caja {
  border:solid 1px rgb(156, 150, 150) ;
  width: 400px;
  height: 100%;
  text-align: center;
  padding: 0 0 10px 0;
  margin: 0;
}

.video-caja h3 {
  font-size: 14px;
  margin: 0px !important;
  padding: 7px 0 7px 0 !important;
}

.video-caja div {
  font-size: 12px;
  margin: 0px !important;
  padding: 0px !important;
}

.video-titulo {
  font-size: 12px;
}

.header span a {
  color: #696969 !important;
  text-decoration: none;
}
.video-item img {
  
  width: 100%;
  border-radius: 6px;
  transition: transform 0.2s;
}

.video-item img:hover {
  transform: scale(1.05);
}

.video-item h3 {
  font-size: 16px;
  margin-top: 10px;
}


@media (max-width: 768px) {
  .grid-videos {
    /* border:solid 8px rgb(187, 180, 180) ; */
    display: grid;
    justify-content: center; /* Centrado horizontal */
    align-items: center;     /* Centrado vertical */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap:50px;
    width: 100%;
  }
  .video-caja h3 {
    font-size: 18px;
 }
  .video-caja div {
    font-size: 16px;
 }
}


/* PAGINADOR */

.paginador {
  text-align: center;
  margin-top: 40px;
}

.paginador a {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  background: #eee;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
}

.paginador a:hover {
  background: #ddd;
}

.paginador a.activo {
  background: #333;
  color: white;
}

