.carousel {
  width: 100%;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  background: transparent;  
}
.carousel-item {
  display: none;
}
.carousel-item.active {
  display: block;
}
.carousel-item video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  background: transparent;
}
.indicator {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.indicator.active {
  background-color: #fff;
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .carousel-item video {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .carousel-item video {
    height: 220px;
  }
}
.tvx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 82%;
  margin: 0 auto;
  padding: 40px 0;
}
.tvx-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (max-width: 768px) {
  .tvx-grid {
    width: 90%;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .tvx-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    gap: 6px;
    padding: 20px 0;
  }
}