/* Bannière de conversion en bas de la fiche shampoing */
.pack-promo {
  padding: 34px 0;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}
.pack-promo-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
  gap: 34px;
  align-items: center;
}
.pack-promo-copy .eyebrow {
  color: #dff4ed;
}
.pack-promo-copy h2 {
  max-width: 560px;
  color: #fff;
}
.pack-promo-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 25px;
  color: #e7faf5;
  line-height: 1.7;
}
.pack-promo-copy .btn-light {
  color: var(--teal-dark);
}
.pack-promo-media {
  width: 100%;
  max-height: 300px;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(16,40,59,.16);
}
.pack-promo-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 660px) {
  .pack-promo {
    padding: 30px 0;
  }
  .pack-promo-inner {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .pack-promo-copy h2 {
    font-size: 2.15rem;
  }
  .pack-promo-copy .btn {
    width: 100%;
  }
  .pack-promo-media {
    order: -1;
    border-radius: 19px;
  }
}
