/* ── Accordion item ── */
.accordion {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(30, 30, 47, 0.08);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.accordion:hover {
  box-shadow: 0 4px 16px rgba(30, 30, 47, 0.06);
}
.accordion:hover .accordion--title {
  color: #d6006e;
}
/* ── Title / Question button ── */
.accordion--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e1e2f;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s;
}

/* ── Icon (chevron) ── */
.accordion--icon {
  color: #5a5a6e;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.accordion.accordion--open .accordion--icon {
  transform: rotate(180deg);
  color: var(--primary, #d6006e);
}

/* ── Content / Answer ── */
.accordion--content {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion.accordion--open .accordion--content {
  max-height: 600px;
  padding: 0 22px 18px;
  overflow: visible;
}

.accordion--content p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #5a5a6e;
  margin-bottom: 6px;
}

.accordion--content strong {
  color: #1e1e2f;
}

.accordion--content a {
  color: var(--primary, #d6006e);
  text-decoration: none;
  font-weight: 600;
}
