body main {
  padding-top: 0;
}
main .image {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 20px 20px;
}
.image h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-shadow: 0 0 15px #ddd;
  color: #000;
}
h2 p {
  font-size: 13px;
}
article {
  position: relative;
  padding: 5px 10px;
}
article-image {
  display: block;
  width: 100%;
  background-size: contain;
  aspect-ratio: 16 / 5;
}
@media (max-width: 700px) {
  article-image {
    aspect-ratio: 16 / 9;
  }
}
