/* =========================
   HIGHLIGHTED VIDEOS
   ========================= */

.highlighted-videos {
  margin-top: 40px;
}

.highlighted-header h2 {
  color: #fff;
  margin-bottom: 5px;
}

.highlighted-header span {
  color: #caa45d;
  font-size: 14px;
}

/* GRID */
.highlighted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* CARD BASE */
.video-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 16 / 9;   /* 🔥 garante alinhamento */
  display: block;
  position: relative;
}

/* THUMB PADRÃO */
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CAPTION PADRÃO */
.video-card .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  font-size: 13px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,0)
  );
}

.video-card .date {
  color: #caa45d;
  margin-right: 5px;
}

/* =========================
   YOUTUBE MORE CARD
   ========================= */

.video-card.youtube-more {
  background: #000;
}

/* overlay leve (igual referência) */
.video-card.youtube-more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.6),
    rgba(0,0,0,0)
  );
  z-index: 1;
}
