.list-container_hello {
  display: grid;
  grid-gap: 11px;
  padding: 3px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, 1fr);
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none; /* Impede a seleção de texto */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.list-container_hello:active {
  cursor: grabbing;
}
.list-container_hello::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.list-container_hello::-webkit-scrollbar-thumb {
  background-color: #ffffff0e;
}

.vid-list_hello {
  background-color: #0000004f;
  padding: 6px 6px;
  border-radius: 10px;
  margin-bottom: 5px;
  transition: 0.3s;
}
.vid-list_hello:hover {
  background-color: rgba(128, 128, 128, 0.164);
}

.vid-list_hello .thumbnail {
  width: 100%;
  border-radius: 5px;
}

.vid-list_hello .thumbnail:hover {
  filter: brightness(75%);
}

.vid-list_hello .flex-div {
  align-items: flex-start;
  margin-top: 7px;
}

.vid-list_hello .flex-div img {
  width: 35px;
  margin-right: 10px;
  border-radius: 50%;
}

.vid-info_hello a {
  color: rgb(235, 235, 235);
  font-weight: 600;
  display: block;
  margin: bottom 5px;
  margin-top: 3px;
  font-size: 13.5px;
  transition: 0.3s;
  cursor: pointer;
}

.vid-info_hello a:hover {
  color: rgb(158, 158, 158);
}

@media (max-width: 900px) {
  .list-container_hello {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    grid-auto-columns: minmax(90px, 1fr);
  }
}