/* FAQ accordion. Built on details/summary, so it works with JavaScript disabled. */
.ph-faq__heading { margin-bottom: 24px; }
.ph-faq { max-width: var(--pharmacy-narrow); margin-inline: auto; }
.ph-faq__item { border-bottom: 1px solid var(--pharmacy-border); }

.ph-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	font-size: 1.02rem;
	font-weight: 600;
	color: var(--pharmacy-heading);
	cursor: pointer;
	list-style: none;
}

.ph-faq__q::-webkit-details-marker { display: none; }

.ph-faq__chevron {
	position: relative;
	flex: 0 0 12px;
	width: 12px;
	height: 12px;
}

.ph-faq__chevron::before,
.ph-faq__chevron::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 12px;
	height: 2px;
	background: currentColor;
	transition: transform 200ms ease;
}

.ph-faq__chevron::after { transform: rotate(90deg); }
.ph-faq__item[open] .ph-faq__chevron::after { transform: rotate(0deg); }

.ph-faq__a { padding: 0 0 20px; font-size: 0.96rem; opacity: 0.85; }
