/**
 * Naseem FAQ — minimal list style (no card, no background).
 */

.naseem-faq {
	width: 100%;
	background: transparent;
}

.naseem-faq__item {
	border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.naseem-faq__question {
	margin: 0;
}

.naseem-faq__toggle {
	width: 100%;
	display: grid;
	grid-template-columns: 4.25rem 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1.45rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	text-align: left;
	cursor: pointer;
}

.naseem-faq__index {
	font-size: 1.9rem;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #0f172a;
}

.naseem-faq__question-text {
	font-size: 1.95rem;
	line-height: 1.2;
	font-weight: 500;
	color: #0f172a;
}

.naseem-faq__icon {
	font-size: 2rem;
	line-height: 1;
	font-weight: 300;
	color: #0f172a;
	transition: transform 0.2s ease;
}

.naseem-faq__item.is-open .naseem-faq__icon {
	transform: rotate(45deg);
}

.naseem-faq__answer {
	padding: 0 0 1.3rem 5.25rem;
}

.naseem-faq__answer-inner {
	max-width: 56rem;
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
}

@media (max-width: 991px) {
	.naseem-faq__toggle {
		grid-template-columns: 3rem 1fr auto;
		padding: 1.15rem 0;
	}
	.naseem-faq__index {
		font-size: 1.25rem;
	}
	.naseem-faq__question-text {
		font-size: 1.3rem;
	}
	.naseem-faq__icon {
		font-size: 1.35rem;
	}
	.naseem-faq__answer {
		padding-left: 3.95rem;
		padding-bottom: 1rem;
	}
}
