/* ── FAQ Section ──────────────────────────────────────────── */

.faq-section {
	background: #fff;
}

.faq-section .section-header {
	margin-bottom: 40px;
}

/* ── List ────────────────────────────────────────────────── */

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* ── Item ────────────────────────────────────────────────── */

.faq-item {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
	border-color: rgba(0, 0, 0, 0.18);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item.open {
	border-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ── Question (summary) ──────────────────────────────────── */

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 24px;
	cursor: pointer;
	list-style: none;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink, #0C1F3F);
	transition: color 0.2s ease;
}

.faq-question:hover {
	color: var(--crimson, #B91C1C);
}

/* ── Chevron ─────────────────────────────────────────────── */

.faq-chevron-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f0f1f3;
	flex-shrink: 0;
	transition: background 0.2s ease;
}

.faq-item:hover .faq-chevron-wrap {
	background: #e4e5e9;
}

.faq-chevron {
	color: var(--ink, #0C1F3F);
	transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
	transform: rotate(180deg);
}

/* ── Answer ──────────────────────────────────────────────── */

.faq-answer {
	padding: 0 24px;
	overflow: hidden;
	height: 0;
	opacity: 0;
	transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
	opacity: 1;
	padding-bottom: 20px;
}

.faq-answer p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--gray-500, #6b7280);
	margin: 0;
}

/* WYSIWYG-svar: flere afsnit, lister og links */
.faq-answer p + p {
  margin-top: 12px;
}

.faq-answer a {
  color: var(--crimson, #B91C1C);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: var(--crimson-dark, #991B1B);
}

.faq-answer ul,
.faq-answer ol {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500, #6b7280);
}

.faq-answer li {
  margin-bottom: 6px;
}

.faq-answer strong {
  color: var(--ink, #0C1F3F);
  font-weight: 600;
}
