/*
* Refactored d8-cat-faq styles originally from style.css – moved here for better organization 
*/

/* d8-cat-faq Section on Category Archive Page start */
.d8-cat-faq{
	margin-bottom: 40px;
}
.d8-cat-faq--heading{
	font-size: 30px;
	line-height: 38px;
	margin-bottom: 30px;
}
.d8-cat-faq .faq-answer {
	display: none; /* Hide all answers by default */
	padding-top: 10px;
}
.d8-cat-faq .faq-item:first-child .faq-answer {
	display: block; /* Show the first answer by default */
}
.d8-cat-faq .faq-question {
	cursor: pointer;
}
.d8-cat-faq .faq-item {
	border-bottom: 0.9px solid #02020226;
	padding: 15px;
}
.d8-cat-faq .faq-question{
	font-size: 18px;
	line-height: 23px;
	font-weight: 600;
}
.d8-cat-faq .faq-answer p{
	margin-bottom: 0;
}
.d8-cat-faq .faq-question{
	position: relative;
	padding-right: 25px;
}
.d8-cat-faq .faq-question:after{
	content: '';
	position: absolute; 
	background-image: url("../img/down-arrow.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	right: 0;
	top: 0;
	width: 25px;
	height: 25px;
}
@media(max-width: 767.9px){
	.d8-cat-faq .faq-answer p{
		font-size: 15px;
		line-height: 19px;
	}
}

.d8-cat-faq .faq-answer h5{
	font-size: 19px;
}
/* d8-cat-faq Section on Category Archive Page end */