.chantier-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 72px;
}

.chantier-gallery figure {
  margin: 0;
  background: #f5f2ea;
}

.chantier-gallery img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.chantier-gallery figure:first-child {
  grid-column: 1 / -1;
}

.chantier-gallery figure:first-child img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.chantier-gallery figcaption {
  padding: 13px 16px;
  color: #56544f;
  font-size: .86rem;
}

.chantier-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 30px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.chantier-facts div {
  padding: 18px;
  background: #fff;
}

.chantier-facts strong {
  display: block;
  color: #94701c;
  font-size: 1.1rem;
}

.chantier-facts span {
  color: #5d5b56;
  font-size: .85rem;
}

@media (max-width: 620px) {
  .chantier-gallery {
    grid-template-columns: 1fr;
  }

  .chantier-gallery figure:first-child {
    grid-column: auto;
  }

  .chantier-gallery img,
  .chantier-gallery figure:first-child img {
    height: auto;
    aspect-ratio: auto;
  }

  .chantier-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
