/** Shopify CDN: Minification failed

Line 19:14 Expected identifier but found whitespace
Line 19:16 Unexpected "{"
Line 19:25 Expected ":"
Line 19:51 Expected ":"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
Line 20:57 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:notre-engagement (INDEX:64) */
.notre-engagement {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}
.notre-engagement__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Collage vidéos */
.notre-engagement__media {
  position: relative;
  padding-bottom: 90px;
}
.notre-engagement__video-back {
  width: 68%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
}
.notre-engagement__video-front {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-card-image, 0 8px 30px rgba(0,0,0,0.12));
}

.notre-engagement__vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texte — polices natives Céramide */
.notre-engagement__surtitre {
  margin-bottom: 1.2rem;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  text-transform: none;
}

.notre-engagement__titre {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: var(--font-heading-letter-spacing, 0.06em);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2.4rem;
  color: rgb(var(--color-foreground));
}
.notre-engagement__para {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: calc(var(--font-body-scale) * 1.4rem);
  line-height: 1.75;
  color: rgba(var(--color-foreground), 0.85);
  margin-bottom: 1.4rem;
}

/* Icônes */
.notre-engagement__icons {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
.notre-engagement__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  max-width: 110px;
}
.notre-engagement__icon-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media screen and (max-width: 749px) {
  .notre-engagement__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .notre-engagement__media {
    padding-bottom: 60px;
  }
  .notre-engagement__video-back {
    width: 72%;
  }
  .notre-engagement__video-front {
    width: 58%;
  }
}
/* END_SECTION:notre-engagement */