.video-items-container {
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem 1rem;
}

.player-video-item {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 16/9;
}

.video-topic-title {
  color: rgb(59,60,67);
  font-size: 22px;
  font-weight: 600;
}

.video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.25rem;
}

.video-title {
  color: rgb(59,60,67);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.video-title-container {
  width: 100%;
}

.video-topic-title-container {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.video-topic-item {
  padding-bottom: 0.75rem;
}

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

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

.main-card-container {
  border-radius: 30px !important;
  border-style: none;
  border-bottom-style: none;
  margin-bottom: 0 !important;
  overflow: hidden;
}

.main-container {
  max-width: 1500px;
  width: 100%;
  min-width: 340px;
}

.player-video-item {
  pointer-events: auto;
}

.player-video-item.no-controls {
  controls: false;
}

