.video-projects-preview {
  margin: 3rem 0 0 0;
}
.video-projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.video-item {
  flex: 1 1 28%;
  min-width: 220px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0 0 1.5rem 0;
  position: relative;
}
.video-item.with-divider::after {
  content: '';
  display: block;
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  /* background: rgba(255,255,255,0.15); */
}
.video-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  text-decoration: none;
  width: 100%;
}
.video-cover {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: #111;
}
.video-title-preview {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 2.5rem 0 0;
  color: var(--color-white);
  text-align: center;
}
.video-projects-viewmore {
  text-align: center;
  margin-top: 2rem;
}
.view-more-link {
  color: var(--color-white);
  text-decoration: underline;
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.view-more-link:hover {
  opacity: 1;
}
@media (max-width: 900px) {
  .video-projects-grid {
    gap: 1rem;
  }
  .video-item {
    min-width: 45%;
    max-width: 48%;
  }
}
@media (max-width: 600px) {
  .video-projects-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .video-item {
    min-width: 100%;
    max-width: 100%;
  }
}
