/* Section FAQ ([spc_faq]) — accordéon natif <details>/<summary>. */

.spc-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
}

.spc-faq__item {
  border: 1px solid #eef0f2;
  border-radius: 10px;
  overflow: hidden;
}

.spc-faq__item[open] {
  border-color: #dce5ef;
}

.spc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  color: #20242a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.spc-faq__question::-webkit-details-marker {
  display: none;
}

.spc-faq__item[open] .spc-faq__question {
  background: #f7f7f7;
  color: #c8102e;
}

.spc-faq__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform .15s ease;
}

.spc-faq__item[open] .spc-faq__icon {
  transform: rotate(180deg);
}

.spc-faq__answer {
  padding: 0 18px 16px;
  background: #f7f7f7;
}

.spc-faq__answer p {
  margin: 0;
  color: #45494f;
  font-size: 14px;
  line-height: 1.6;
}
