.header-title {
  padding: 10px 0px 0px 30px;
}

.list-slider-container {
  padding: 0px 30px 0px 30px;
  scroll-padding: 0 30px;
  scroll-behavior: smooth;
  align-content: stretch;
  overscroll-behavior-x: contain;
  overflow-y: hidden;
  overflow-x: auto;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.list-slider-container::-webkit-scrollbar {
  display: none;
}

.list-item-image-container {
  padding: 10px;
}

.list-item-image-video-container {
  position: relative;
}

.list-item-video {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: calc(100% - 8px);
  z-index: 1;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 6px;
  visibility: hidden;
}

.list-item-video-visible {
  visibility: visible;
}

.list-container {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 8px 0px;
}

.list-container::-webkit-scrollbar {
  display: none;
}

.list-item.selected {
  transform: scale(1.05);
}

.list-item {
  width: calc(100% / 3);
  flex-shrink: 0;
  flex-grow: 0;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 1200px) {
  .list-item {
    width: calc(100% / 5);
  }
}

.list-item-image {
  width: 100%;
  border-radius: 8px;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.list-item.selected .list-item-image {
  border: 4px solid #fff;
}

.list-item.selected .list-item-image-container {
  padding: 7px 17px 7px 10px;
}

.list-title {
  font-size: 1.2rem;
  padding: 0px 0px 0px 30px;
}