/* SERVICE PRESTATIONS 7 - ACCORDION LIST */
.prestations-7 {
  padding: 70px 5%;
  background: var(--white);
  font-family: var(--font-body);
}
.prestations-7__inner {
  max-width: 900px;
  margin: 0 auto;
}
.prestations-7__title {
  margin: 0 0 36px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.4vw, 2rem);
  font-weight: 800;
  color: var(--primary);
}
.prestations-7__row {
  margin-bottom: 10px;
  padding: 22px 26px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 3%, var(--white));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.prestations-7__bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
/* Neutralise le hover/focus bleu hérité du thème WP sur le titre — CLAUDE.md §4.6.
   Hover volontairement transparent : seule la couleur du titre réagit. */
.prestations-7__bar:hover,
.prestations-7__bar:focus,
.prestations-7__bar:focus-visible {
  background: none;
  color: inherit;
}
.prestations-7__bar:hover .prestations-7__name,
.prestations-7__bar:focus-visible .prestations-7__name {
  color: var(--secondary);
}
.prestations-7__bar:focus {
  outline: none;
}
.prestations-7__bar:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--secondary) 55%, transparent);
  outline-offset: 4px;
  border-radius: 8px;
}
.prestations-7__bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.prestations-7__tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
}
.prestations-7__name {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--primary);
}
.prestations-7__hint {
  font-size: 0.75rem;
  color: var(--gray-dark);
}
.prestations-7__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.prestations-7__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 22px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--primary) 8%, transparent);
}
.prestations-7__desc {
  margin: 0 0 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-dark);
}
.prestations-7__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.prestations-7__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--primary);
}
.prestations-7__dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}
.prestations-7__media img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .prestations-7__grid {
    grid-template-columns: 1fr;
  }
  .prestations-7__hint {
    display: none;
  }
}

/* ── TITRES : couleur de survol explicite (CLAUDE.md §4.13) ──────────
   Le main.css des themes stylise les balises Hn, hover compris. Chaque
   titre reprend ici sa couleur de base pour neutraliser cet heritage. */
.prestations-7__title:hover {
  color: var(--primary);
}
