.video {
  max-width: 560px;
  width: 95%;
  margin: 60px auto
}

.video h2 {
  margin-top: 20px;
  line-height: 30px
}

lite-youtube {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}

#link {
  border-top: 15px solid #fff
}

#link article {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px auto;
  width: 95%
}

#link div {
  position: relative;
  aspect-ratio: 8/5;
  border-radius: 8px;
  overflow: hidden
}

#link div img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#link p {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 20px 0;
  width: 100%;
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.5em);
  font-weight: 600;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 100%)
}

@media screen and (max-width:978px) {
  #link article {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media screen and (max-width:590px) {
  iframe {
    width: 100%
  }

  #link article {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 30px auto;
    gap: 30px
  }
}