.listTheme {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.listTheme li {
  flex: 1 1 100px;
  text-align: center;
  transition: transform 0.3s ease;
}

.listTheme li:hover {
  transform: scale(1.05);
}

.lastVideo {
  display: flex;
  gap: 6px;
  margin-bottom: 1.3rem;
  padding: 15px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.listVideo {
  display: flex;
  list-style: none;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-around;
}

.lastVideo h2 {
  font-size: 1rem;
}

.lastVideo h2 span {
  font-size: .7rem;
}

.lastVideo img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.miniature {
  width: 45%;
}

/*
.listVideo li {
  display: flex;
  width: 225px;
  flex-direction: column;
}
.listVideo li img {
  width: 184px;
  transition: .7s;
  cursor: pointer;
}
.listVideo li img:hover{
  transform: scale(1.2);
}
  */
.icon_theme {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.adscence {
  background: #555;
  width: 100%;
  height: 100%;
}

.listVideo {
  height: 450px;
  overflow: auto;
}

/* ---- SECTION RECOMMANDATIONS ---- */
.recommended-title {
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.recommended-video {
  display: flex;
  gap: 12px;
  margin-bottom: 1.2rem;
  padding: 10px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.recommended-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.recommended-video img {
  width: 110px;
  border-radius: 10px;
  object-fit: cover;
}

.recommended-video .info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.recommended-video .info p {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 4px;
  width: 50%;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .recommended-video {
    padding: 8px;
  }

  .recommended-video img {
    width: 90px;
  }
}