.accordion {
	margin: 0 auto;
	padding-top: 150px;
	padding-bottom: 150px;
}
.accordion__item {
	padding: 30px 26px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 10px;
	background: linear-gradient(90deg, #fe863e 0%, #ffd62f 100%);
	box-shadow: none;
	position: relative;

	&:hover {
		box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
		filter: brightness(1.03);
	}
}

.accordion__item.active > .accordion__content {
	padding-top: 18px;
	max-height: 300px;
}
.accordion__item.active > .accordion__label:after {
	transition: all 0.3s;
	transform: rotate(135deg);
}
.accordion__label {
	font-size: 24px;
	font-weight: 700;
	max-width: 90%;
	line-height: 24px;
	position: relative;
	cursor: pointer;
	color: #382520;
	text-align: left;
	font-family: "Manrope";
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: 0.2px;
}
.accordion__label:after {
	display: block;
	content: "";
	background-image: url("/img/faq-item.svg");
	background-size: 48px 48px;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: -40px;
	transition: all 0.3s;
}
.accordion__content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
	color: #382520;
	font-family: "Manrope";
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: 0.2px;
}
.accordion__list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 20px;
}

@media (max-width: 744px) {
	.accordion {
		padding-top: 80px;
		padding-bottom: 100px;
	}

	.accordion__item {
		padding: 30px 16px;
	}

	.accordion__label:after {
		width: 24px;
		height: 24px;
		background-size: 24px 24px;
		right: -25px;
	}
}

@media (max-width: 640px) {
	.accordion__label {
		font-size: 16px;
	}

	.accordion__content {
		font-size: 16px;
	}
}
