/* ══════════════════════════════
   MUTATION
   ══════════════════════════════ */

.mutation-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
  align-items: center;
  margin: 0 auto;
}

/* ── BLOC ABOUT ── */
.about-block {
  position: relative;
  border: 2px solid #d0e0e0;
  border-radius: 18px;
  padding: 28px 24px 24px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  width: 100%; 
  box-sizing: border-box;
}

.about-label {
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--teal-dark);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 22px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.about-text {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* ── SECTION ALL TRAITS ── */
.traits-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.traits-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dce8e8;
}

/* ── LISTE DES TRAITS ── */
.traits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* ── CARTE TRAIT ── */
.trait-card {
  display: flex;
  align-items: center;
  background: var(--teal-dark);
  border-radius: 14px;
  padding: 14px 20px;
  gap: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: background 0.2s, transform 0.18s cubic-bezier(.34,1.56,.64,1);
  cursor: default;
}

.trait-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}

.trait-name {
  flex: 1;
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

/* Séparateur vertical */
.trait-separator {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.trait-multi {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  flex-shrink: 0;
}

.trait-multi-label {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trait-multi-value {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}
