.avantages-produits__list {
  display: flex;
  flex-direction: column;
  gap: 32px;

  padding: 0 !important;
}

.avantages-produits__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;

  padding: 24px;
  background-color: #fff;
  box-shadow: -2px 12px 18px 6px rgba(0, 0, 0, 0.05);
}

.avantages-produits__icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  height: 80px;
  border-radius: 50%;
  padding: 16px;
  background-color: rgb(227, 6, 19, 0.1);
}

.avantages-produits__content {
  display: flex;
  flex-direction: column;

  padding-left: 24px;
  border-left: 2px solid #e30613;
}

.avantages-produits__title {
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #e30613;
  font-weight: 700;

  margin-bottom: 0;
  padding-bottom: 0;
}

.avantages-produits__txt {
  margin-bottom: 0;
  color: #333;
}

@media (max-width: 1200px) {
  .avantages-produits__icon {
    height: 70px;
  }

  .avantages-produits__item {
    padding: 20px;
    gap: 20px;
  }

  .avantages-produits__content {
    padding-left: 20px;
    text-wrap: balance;
  }

  .avantages-produits__title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .avantages-produits__list {
    gap: 24px;
  }

  .avantages-produits__icon {
    height: 60px;

    padding: 16px;
    gap: 16px;
  }

  .avantages-produits__content {
    padding-left: 16px;
  }

  .avantages-produits__title {
    font-size: 16px;
  }
}
