.faq-new {
	overflow: hidden;
}

.faq-new .container {
	display: flex;
	flex-direction: column;
	row-gap: 32px;
}

@media (max-width: 1024px) {
	.faq-new .container {
		row-gap: 24px;
	}

	.faq-new {
		row-gap: 24px;
	}

	.text-title br{
		display: none;
	}
}

/* ===== CONTAINER ===== */
.faq-new__container {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
}

.faq-new__container ul {
	grid-column: span 6;
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}

@media (max-width: 767px) {
	.faq-new__container {
		grid-template-columns: 100%;
	}

	.faq-new__container ul {
		grid-column: auto;
	}
}

/* ===== ITEM ===== */
.faq-new__item {
	grid-column: span 6;
	background-color: var(--white);
	padding: 16px;
	border-radius: 4px;
	color: var(--background-color-dark);
	align-self: flex-start;
	cursor: pointer;
	transition: background-color 0.3s ease;
	width: 100%;
}

@media (min-width: 1200px) {
	.faq-new__item:hover {
		background-color: var(--background-color-dark-hover);
		color: var(--white);
	}
}

@media (max-width: 1024px) {
	.faq-new__item {
		grid-column: 1 / -1;
		padding: 16px 8px;
	}
}

/* ===== QUESTION HEADER ===== */
.faq-new__question-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-new__question-header.open svg {
	transform: scale(-1);
	transition: transform 0.3s ease;
}

/* ===== QUESTION CONTENT ===== */
.faq-new__question-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.faq-new__question-header svg{
	flex: 0 0 24px;
}

.faq-new__question-content ul {
	list-style: outside;
	padding-left: 16px;
	row-gap: 0;

	li::marker {
		font-size: 14px;
	}
}

.faq-new__question-content p {
	padding-top: 22.5px;
}