.rpl-faq .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.rpl-faq {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rpl-faq-topic {
	border-bottom: 1px solid rgba(43, 38, 35, 0.12);
}

.rpl-faq-topic__header,
.rpl-faq-item__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 18px 0;
	background: none;
	border: 0;
	text-align: left;
	cursor: pointer;
}

.rpl-faq-topic__title {
	margin: 0;
	flex: 1 1 auto;
	font-size: 1.5rem;
	line-height: 1.25;
	font-weight: 600;
	color: #2b2623;
}

.rpl-faq-item__question {
	margin: 0;
	flex: 1 1 auto;
	font-size: 1.05rem;
	line-height: 1.4;
	font-weight: 500;
	color: #3b3531;
}

.rpl-faq-topic__toggle,
.rpl-faq-item__toggle {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.rpl-faq-plus {
	position: relative;
	display: block;
	width: 36px;
	height: 36px;
	border: 1.5px solid #8a5a46;
	border-radius: 50%;
	color: #8a5a46;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rpl-faq-plus::before,
.rpl-faq-plus::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	transform: translate(-50%, -50%);
}

.rpl-faq-plus::before {
	width: 14px;
	height: 1.5px;
}

.rpl-faq-plus::after {
	width: 1.5px;
	height: 14px;
}

.rpl-faq-topic__toggle:hover .rpl-faq-plus,
.rpl-faq-item__toggle:hover .rpl-faq-plus,
.rpl-faq-topic.is-open > .rpl-faq-topic__header .rpl-faq-plus,
.rpl-faq-item.is-open > .rpl-faq-item__header .rpl-faq-plus {
	background: #8a5a46;
	border-color: #8a5a46;
	color: #fff;
}

.rpl-faq-topic.is-open > .rpl-faq-topic__header .rpl-faq-plus,
.rpl-faq-item.is-open > .rpl-faq-item__header .rpl-faq-plus {
	transform: rotate(45deg);
}

.rpl-faq-topic__panel,
.rpl-faq-item__answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transition: grid-template-rows 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.rpl-faq-topic__panel-inner,
.rpl-faq-item__answer-inner {
	overflow: hidden;
	min-height: 0;
}

.rpl-faq-topic.is-open > .rpl-faq-topic__panel,
.rpl-faq-item.is-open > .rpl-faq-item__answer {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
}

.rpl-faq-topic__panel-inner {
	padding: 0;
}

.rpl-faq-topic.is-open > .rpl-faq-topic__panel .rpl-faq-topic__panel-inner {
	padding: 0 0 12px 8px;
}

.rpl-faq-item {
	border-top: 1px solid rgba(43, 38, 35, 0.08);
}

.rpl-faq-item__header {
	padding: 14px 0;
}

.rpl-faq-item__answer-inner {
	padding: 0;
	color: #4f4b47;
	font-size: 0.98rem;
	line-height: 1.65;
}

.rpl-faq-item.is-open > .rpl-faq-item__answer .rpl-faq-item__answer-inner {
	padding: 0 52px 16px 0;
}

.rpl-faq-item__answer-inner p {
	margin: 0 0 0.75em;
}

.rpl-faq-item__answer-inner p:first-child {
	margin-top: 0;
}

.rpl-faq-item__answer-inner p:last-child {
	margin-bottom: 0;
}

.rpl-faq-item__answer-inner ul {
	margin: 0 0 0.75em;
	padding-left: 1.2em;
}

.rpl-faq__empty {
	padding: 24px;
	text-align: center;
	color: #6d6a66;
}

@media (hover: hover) and (pointer: fine) {
	.rpl-faq--hover .rpl-faq-topic:hover > .rpl-faq-topic__panel,
	.rpl-faq--hover .rpl-faq-topic:focus-within > .rpl-faq-topic__panel {
		grid-template-rows: 1fr;
		visibility: visible;
		opacity: 1;
	}

	.rpl-faq--hover .rpl-faq-topic:hover > .rpl-faq-topic__header .rpl-faq-plus,
	.rpl-faq--hover .rpl-faq-topic:focus-within > .rpl-faq-topic__header .rpl-faq-plus {
		background: #8a5a46;
		border-color: #8a5a46;
		color: #fff;
		transform: rotate(45deg);
	}

	.rpl-faq--hover .rpl-faq-topic:hover > .rpl-faq-topic__panel .rpl-faq-topic__panel-inner,
	.rpl-faq--hover .rpl-faq-topic:focus-within > .rpl-faq-topic__panel .rpl-faq-topic__panel-inner {
		padding: 0 0 12px 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rpl-faq-plus,
	.rpl-faq-topic__panel,
	.rpl-faq-item__answer {
		transition: none;
	}
}
