/* ==========================================================================
   fp-faq-v2 — pill accordion (Formal Peptides)
   ========================================================================== */

.fp-faq-v2 {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.fp-faq-v2__item {
	border: none;
	background: transparent;
	box-shadow: none;
	margin: 0;
	padding: 0;
}

.fp-faq-v2__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	margin: 0;
	padding: 1rem 1.375rem;
	border: none;
	border-radius: 999px;
	background: #eef4f9;
	color: #002137;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	box-shadow: none;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.fp-faq-v2__trigger:hover {
	background: #e3edf6;
}

.fp-faq-v2__trigger:focus-visible {
	outline: 2px solid #00a3c4;
	outline-offset: 2px;
}

.fp-faq-v2__question {
	flex: 1;
	min-width: 0;
	color: inherit;
}

.fp-faq-v2__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(0, 163, 196, 0.15);
	color: #002137;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.fp-faq-v2__icon::before,
.fp-faq-v2__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	border-radius: 1px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.fp-faq-v2__icon::before {
	width: 12px;
	height: 2px;
}

.fp-faq-v2__icon::after {
	width: 2px;
	height: 12px;
}

.fp-faq-v2__panel {
	border: none;
	background: transparent;
	margin: 0;
	padding: 0;
	box-shadow: none;
}

.fp-faq-v2__panel[hidden] {
	display: none !important;
}

.fp-faq-v2__answer {
	padding: 0.25rem 1.375rem 1.25rem;
}

.fp-faq-v2__answer p {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	font-weight: 400;
	color: #475569;
	line-height: 1.65;
}

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

.fp-faq-v2__item.is-open {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 33, 55, 0.1);
}

.fp-faq-v2__item.is-open .fp-faq-v2__trigger {
	background: #002137;
	color: #ffffff;
	border-radius: 14px 14px 0 0;
}

.fp-faq-v2__item.is-open .fp-faq-v2__trigger:hover {
	background: #002137;
}

.fp-faq-v2__item.is-open .fp-faq-v2__icon {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.fp-faq-v2__item.is-open .fp-faq-v2__icon::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}

.fp-faq-v2__item.is-open .fp-faq-v2__panel {
	background: #ffffff;
}

.faq-block .fp-faq-v2 {
	background: #ffffff;
	border-radius: 16px;
	padding: 8px;
	box-shadow: 0 8px 32px rgba(0, 33, 55, 0.08);
}

.faq-page__accordion-card .fp-faq-v2 {
	padding: 4px 0;
}
