/**
 * Главная v2 — FAQ (<details>, без JS).
 */

.br-faq {
	--br-faq-green: #208d79;
	--br-faq-bg: #f3f4f6;
	--br-faq-text: #373737;
	--br-faq-muted: #595f6b;
	padding: 0;
	background: #fff;
}

.br-faq__title {
	margin: 0 0 20px;
	color: var(--br-faq-text);
	font-family: var(--ff, "Manrope", sans-serif);
	font-weight: 600;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-transform: none;
}

.br-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: none;
}

.br-faq__item {
	border: 0;
	border-radius: 20px;
	background: var(--br-faq-bg);
	overflow: hidden;
}

.br-faq__item[open] {
	background: #eef0f2;
}

.br-faq__question {
	display: block;
	list-style: none;
	margin: 0;
	padding: 20px 56px 20px 24px;
	color: var(--br-faq-text);
	font-family: var(--ff, "Manrope", sans-serif);
	font-weight: 700;
	font-size: clamp(16px, 1.6vw, 18px);
	line-height: 1.35;
	letter-spacing: -0.01em;
	cursor: pointer;
	position: relative;
	text-transform: none;
}

.br-faq__question::-webkit-details-marker {
	display: none;
}

.br-faq__question::marker {
	content: "";
}

.br-faq__question::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 22px;
	color: var(--br-faq-text);
	font-weight: 400;
	font-size: 28px;
	line-height: 1;
	transform: translateY(-50%);
	transition: transform 0.2s ease;
}

.br-faq__item[open] > .br-faq__question::after {
	content: "−";
}

.br-faq__answer {
	padding: 0 24px 22px;
	color: var(--br-faq-muted);
	font-size: 16px;
	line-height: 1.55;
}

.br-faq__answer p {
	margin: 0;
}

.br-faq__answer p + p {
	margin-top: 12px;
}

.br-faq__answer a {
	color: var(--br-faq-green);
	font-weight: 600;
	text-decoration: none;
}

.br-faq__answer a:hover {
	text-decoration: underline;
}

@media (max-width: 575px) {
	.br-faq__question {
		padding: 18px 48px 18px 18px;
		font-size: 15px;
	}

	.br-faq__question::after {
		right: 16px;
		font-size: 24px;
	}

	.br-faq__answer {
		padding: 0 18px 18px;
		font-size: 15px;
	}
}

.homepage--v2 > .about2 + .br-faq {
	padding-top: clamp(8px, 1.5vw, 16px);
	padding-bottom: clamp(32px, 4vw, 48px);
}

body.homepage--v2 .footer {
	margin-top: clamp(24px, 3vw, 40px);
}
