.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;
}

.used-products-section {
  margin-top: 68px;
}

.used-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 18px;
}

.used-product {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.used-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f5f2ea;
}

.used-product h3 {
  margin: 2px 0 8px;
  font-size: 1.08rem;
}

.used-product p {
  margin: 0 0 13px;
  color: #5d5b56;
  font-size: .9rem;
}

.used-product .product-role {
  margin: 0;
  color: #94701c;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-link {
  display: block;
  margin-top: 8px;
  color: #1d1d1b;
  font-size: .82rem;
  font-weight: 750;
  text-decoration-color: #c99b2e;
  text-underline-offset: 3px;
}

.product-link-secondary {
  color: #68655e;
  font-weight: 650;
}

.product-disclaimer {
  color: #706d66;
  font-size: .8rem;
}

.chantier-video {
  margin: 34px 0;
  text-align: center;
}

.chantier-video video {
  display: block;
  width: min(100%, 520px);
  max-height: 760px;
  margin: 0 auto;
  border-radius: 4px;
  background: #171717;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
}

.chantier-video figcaption {
  margin-top: 10px;
  color: #706d66;
  font-size: .82rem;
}

@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);
  }

  .used-products {
    grid-template-columns: 1fr;
  }

  .used-product {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 15px;
    padding: 14px;
  }
}
