/* Views/www_webpack/pages/video/video_mobile.css */
#video {
  padding: 20px clamp(20px, 5vw, 10vw);
}
#video p {
  font-size: clamp(1em, 1.1vw, 2em);
}
.video__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.video__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video__item a {
  font-size: clamp(1em, 4vw, 1.3em);
}
.video__item a:hover {
  text-decoration: underline;
}
.video__item iframe {
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow:
    rgb(0 0 0 / 25%) 0 0.0625em 0.0625em,
    rgb(0 0 0 / 25%) 0 0.125em 0.5em,
    rgb(255 255 255 / 10%) 0 0 0 1px inset;
  transition: all 150ms;
  aspect-ratio: 16 / 9;
}
.video__item iframe:hover {
  transform: scale(1.02);
}
