.video-details {
  max-width: 32%;
  min-width: 200px;
  width: 100%;
  margin-bottom: 50px;
}

.video-details img {
  width: 100%;
  height: 240px;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.video-details img:hover {
  filter: brightness(75%) blur(2px);
}

.video-name {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: bold;
}

.video-name:hover {
  color: var(--primary-color);
}

@media (max-width: 500px) {
  .video-details {
    max-width: 100%;
  }
}