/* ==========================================================================
   videos.css — galería de videos y franja de redes sociales
   ========================================================================== */

#thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#thumbs li {
  list-style-type: none;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.video-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--graphite);
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.06);
  opacity: 0.55;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.video-card__play span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(224, 122, 16, 0.7);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-card__play svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-left: 3px;
}

.video-card:hover .video-card__play span {
  transform: scale(1.08);
  background: var(--amber-bright);
}

.video-card__cat {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--graphite);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
}

.video-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.video-card__body h3 {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.video-card__body p {
  color: var(--text-soft);
  font-size: 14.5px;
  flex: 1;
}

.video-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
}

.video-card__link:hover {
  color: var(--amber-bright);
}

/* Franja de redes sociales */
.social-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.social-band__item {
  background: var(--graphite);
  padding: 40px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-band__ico {
  flex: none;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
}

.social-band__ico svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-band__item h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.social-band__item p {
  color: var(--steel);
  font-size: 14.5px;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .social-band {
    grid-template-columns: 1fr;
  }

  .social-band__item {
    padding: 30px 24px;
  }
}
