.trusted-section {
  padding: 60px 20px;
  background: #f7f7f9;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trusted-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

.trusted-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px; /* espace automatique */
}

.trusted-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.trusted-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.trusted-logo img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.trusted-name {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.trusted-intro-small {
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
}

.trusted-desc {
  margin-top: 10px;
  max-width: 260px;
  list-style: none;
  padding-left: 0;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  padding-right: 10px
}

.trusted-desc li {
  margin-bottom: 4px;
}

.trusted-desc li::before {
  content: "– ";
  color: #d32f2f; /* rouge Tefal */
  font-weight: bold;
}
