/* Ajustements Construction Picolo (hors Webflow) */

/* À propos : hero avec deux images */
.picolo-hero-2 {
  grid-template-columns: 1fr 1fr;
}

/* À propos : photo dans « Notre histoire » */
.picolo-histoire {
  display: flex;
  align-items: stretch;
  gap: 3rem;
}
.picolo-histoire > .content-wrap {
  flex: 1 1 auto;
  min-width: 0;
}
.picolo-histoire_photo {
  flex: 0 0 28%;
  max-width: 22rem;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  align-self: center;
  aspect-ratio: 4 / 5;
}
.picolo-histoire_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 991px) {
  .picolo-histoire {
    flex-direction: column;
    gap: 2rem;
  }
  .picolo-histoire_photo {
    flex: none;
    width: 100%;
    max-width: 28rem;
    align-self: flex-start;
  }
}

@media screen and (max-width: 479px) {
  .picolo-hero-2 {
    grid-template-columns: 1fr;
  }
}

/* Navigation : Contact seulement sur mobile (sur ordinateur, le bouton du header suffit) */
@media screen and (min-width: 768px) {
  .picolo-nav-contact {
    display: none !important;
  }
}
