/**
 * FAQ Schema Frontend Styles
 * 
 * @package awesome-footnotes
 * @since 3.8.0
 */

.awef-faq-schema {
	margin: 2rem 0;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.awef-faq-item {
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: #f9f9f9;
	border-left: 4px solid #2271b1;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.awef-faq-item:last-child {
	margin-bottom: 0;
}

.awef-faq-item:hover {
	background: #f5f5f5;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.awef-faq-question {
	margin: 0 0 1rem 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1d2327;
	line-height: 1.4;
}

.awef-faq-answer {
	color: #50575e;
	line-height: 1.6;
}

.awef-faq-answer p {
	margin-bottom: 1rem;
}

.awef-faq-answer p:last-child {
	margin-bottom: 0;
}

.awef-faq-answer a {
	color: #2271b1;
	text-decoration: none;
}

.awef-faq-answer a:hover {
	text-decoration: underline;
}

.awef-faq-answer ul,
.awef-faq-answer ol {
	margin: 0.5rem 0 1rem 1.5rem;
}

.awef-faq-answer li {
	margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	.awef-faq-schema {
		padding: 1rem;
	}
	
	.awef-faq-item {
		padding: 1rem;
	}
	
	.awef-faq-question {
		font-size: 1.1rem;
	}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.awef-faq-schema {
		background: #1d2327;
	}
	
	.awef-faq-item {
		background: #2c3338;
		border-left-color: #4f94d4;
	}
	
	.awef-faq-item:hover {
		background: #32373c;
	}
	
	.awef-faq-question {
		color: #f0f0f1;
	}
	
	.awef-faq-answer {
		color: #c3c4c7;
	}
	
	.awef-faq-answer a {
		color: #72aee6;
	}
}
