/* Page Nos rencontres */

.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  counter-reset: step;
}

.timeline__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.timeline__step:last-child {
  border-bottom: none;
}

.timeline__number {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--color-terracotta);
  line-height: 1;
}

.timeline__step h3 {
  margin-bottom: 0.35rem;
}

.timeline__step p {
  color: var(--color-text-muted);
  max-width: 52ch;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 62ch;
}

.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-terracotta-deep);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
}
