/* ── Outer grid: head | columns ────────────────────────── */
.faq--grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}

@media (min-width: 901px) {
	.faq--grid {
		grid-template-columns: 280px 1fr;
		gap: 64px;
	}
}

/* ── Head ─────────────────────────────────────────────── */
.faq--eyebrow {
	display: block;
	margin-bottom: 14px;
}

.faq--headline {
	margin: 0;
}

.faq--headline em {
	color: var(--theme-accent);
	font-style: normal;
}

.faq--intro {
	margin: 14px 0 0;
}

.faq--intro p {
	margin: 0 0 1em;
}

.faq--intro p:last-child {
	margin-bottom: 0;
}

.faq--intro a {
	color: var(--theme-accent);
}

.faq--intro a:hover {
	color: var(--theme-accent-2);
}

/* ── Columns ──────────────────────────────────────────── */
.faq--columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media (min-width: 901px) {
	.faq--columns {
		grid-template-columns: 1fr 1fr;
		gap: 0 48px;
	}
}

.faq--list {
	border-top: 1px solid var(--theme-rule);
}

.faq--list:nth-child(2) {
	border-top: 0;
}

@media (min-width: 901px) {
	.faq--list:nth-child(2) {
		border-top: 1px solid var(--theme-rule);
	}
}

/* ── Item ─────────────────────────────────────────────── */
.faq--item {
	border-bottom: 1px solid var(--theme-rule);
}

.faq--item-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 22px 0;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--theme-serif);
	font-size: 21px;
	font-weight: 500;
	color: var(--theme-ink);
	transition: color .2s ease;
}

.faq--item-question:hover {
	color: var(--theme-accent);
}

.faq--item-question:focus {
	outline: none;
}

.faq--item-question:focus-visible {
	outline: 2px solid var(--theme-accent);
	outline-offset: 4px;
}

.faq--item-toggle {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border: 1px solid var(--theme-rule);
	border-radius: 50%;
	position: relative;
	transition: background .2s ease, border-color .2s ease;
}

.faq--item-toggle::before,
.faq--item-toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 1.5px;
	background: var(--theme-ink);
	transform: translate(-50%, -50%);
	transition: transform .25s ease, background .2s ease;
}

.faq--item-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq--item.open .faq--item-toggle {
	background: var(--theme-accent);
	border-color: var(--theme-accent);
}

.faq--item.open .faq--item-toggle::before,
.faq--item.open .faq--item-toggle::after {
	background: var(--theme-on-accent);
}

.faq--item.open .faq--item-toggle::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

/* ── Answer ───────────────────────────────────────────── */
.faq--item-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
	color: var(--theme-ink-soft);
}

.faq--item-answer-inner {
	padding: 0 0 22px;
	max-width: 60ch;
}

.faq--item-answer-inner p {
	margin: 0 0 1em;
}

.faq--item-answer-inner p:last-child {
	margin-bottom: 0;
}

.faq--item-answer-inner a {
	color: var(--theme-accent);
}

.faq--item-answer-inner a:hover {
	color: var(--theme-accent-2);
}

.faq--item.open .faq--item-answer {
	max-height: 600px;
}
