
#mainDesc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255,255,255,0.12),
    transparent 60%
  );
  pointer-events: none;
}

#mainDesc {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 22px 10px;
  text-align: center;
  box-sizing: border-box;
}

#mainDesc p {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #e8e1d4;
  font-weight: 400;
  letter-spacing: 0;
}

#mainDesc p:last-child {
  margin-bottom: 0;
}

#mainDesc p:first-child::first-letter {
  color: #e0af73;
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 768px) {
  #mainDesc {
    padding: 6px 6px 8px;
    text-align: left;
  }

  #mainDesc p {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

#titre_presentation {
  margin: 20px 0 10px;
  padding: 10px;
  font-size: 1.2rem;
  text-align: center;
  font-variant: small-caps;
  color: #ccc;
  border-bottom: 1px solid var(--border-soft);
}

#equipements,
.equipements {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 0;
  min-height: 24px;
}

.equip-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #eee;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  font-size: 0.92rem;
  line-height: 1.22;
  transition: 0.2s ease;
}

.equip-item i {
  font-size: 0.95em;
  color: var(--gold);
  opacity: 0.8;
}

.equip-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
