.videos-explicativos .view-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CONTENEDOR PRINCIPAL */
.videos-wrapper {
  border: 1px solid #8d8d8d;
  border-radius: 16px;
  padding: 28px;
  background: #f5f5f5;
}

/* ZONA SUPERIOR */
.video-top {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  align-items: flex-start;
}

/* INFO VIDEO */
.video-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.video-description {
  font-size: 16px;
  line-height: 1.5;
  color: #222;
}

/* VIDEO PRINCIPAL */
.video-player iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

/* MINIATURAS */
.video-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.video-thumb {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s ease;
  border: 4px solid transparent;
  background: #fff;
}

.video-thumb img {
  width: 100%;
  display: block;
}

.video-thumb:hover {
  transform: translateY(-4px);
}

.video-thumb.active {
  border-color: #3b6edc;
}

/* MOBILE */
@media (max-width: 992px) {

  .video-top {
    grid-template-columns: 1fr;
  }

  .video-player iframe {
    height: 300px;
  }

  .video-thumbnails {
    grid-template-columns: 1fr;
  }

}