/* ═══ FAQ ITEM ═══ */
.faq-item {
  background: var(--blanc);
  border: 1px solid var(--gris-200);
  border-radius: 10px;
  margin-bottom: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item:hover {
  border-color: rgba(184, 150, 90, 0.3);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--noir);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gris-400);
  transition: transform 0.2s;
}

.faq-item[data-faq-open="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item[data-faq-open="true"] .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-text {
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gris-400);
}

@media (min-width: 768px) {
  .faq-item__question {
    font-size: 17px;
    padding: 20px 24px;
  }

  .faq-item__answer-text {
    padding: 0 24px 20px;
  }
}
