.youtubeSection {
  margin: 24px 0;
}

.youtubeList {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}

.youtubeItem {
  position: relative;
  flex: 0 0 auto;
}

.youtubeItem .youtubeFrame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.youtubeItem .youtubeFrame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.youtubeItem.is-long {
  width: 360px;
  aspect-ratio: 16 / 9;
}

.youtubeItem.is-short {
  width: 200px;
  aspect-ratio: 9 / 16;
}

@media (max-width: 768px) {
  .youtubeSection {
    margin: 16px 0;
  }

  .youtubeList {
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .youtubeItem.is-long {
    width: 88%;
  }

  .youtubeItem.is-short {
    width: 180px;
  }
}
