.banners {
  display: flex;
  gap: 0.1em;
}
.banners picture {
  display: block;
  aspect-ratio: 1/1;
  flex: 1;
}
@media (max-width: 900px) {
  .banners picture:nth-of-type(2) {
    display: none;
  }
}
@media (max-width: 1800px) {
  .banners picture:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 2700px) {
  .banners picture:nth-of-type(4) {
    display: none;
  }
}
.banners img {
  width: 100%;
  height: 100%;
}

article {
  margin-top: calc(4rem + 2vw);
}
article p:not(:first-child) {
  margin-top: 1em;
}
@media (min-width: 1000px) {
  article > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 20px;
  }
}
article figure {
  flex: 1 1 calc(50% - 20px);
  margin-top: calc(4rem + 2vw);
}
article figure picture {
  display: block;
  aspect-ratio: 1/1;
}
article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
article figure figcaption {
  font-size: 0.8em;
  line-height: 1.2em;
  margin-top: 1.5em;
}