@charset "utf-8";

.videoList {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(430px,1fr));
}
@media screen and (width <= 768px) {
  .videoList {
    grid-template-columns: 100%;
  }
}