/* Druid FAQ Module — Style 2 (accordion + search, no contact sidebar) */

.faq-style-2 {
	--faq-primary: #D82128;
	--faq-secondary: #555555;
	--faq-text-dark: #1a1a2e;
	--faq-text-body: #4a4a5a;
	--faq-text-muted: #888;
	--faq-border: #e8ecf1;
	--faq-bg: #fff;
	--faq-radius: 8px;
	--faq-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	max-width: 100%;
	margin: 0 auto;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--faq-text-body);
	line-height: 1.6;
	box-sizing: border-box;
}

.faq-style-2 *,
.faq-style-2 *::before,
.faq-style-2 *::after {
	box-sizing: border-box;
}

.faq-style-2 .faq-header {
	text-align: center;
	margin-bottom: 40px;
}

.faq-style-2 .faq-header-title {
	font-size: 35px;
	font-weight: 700;
	color: var(--faq-text-dark);
	margin: 0 0 10px;
}

.faq-style-2 .faq-header-desc {
	font-size: 16px;
	color: var(--faq-text-muted);
	margin: 0;
}

.faq-style-2 .faq-container {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 24px;
	align-items: start;
}

.faq-style-2 .faq-sidebar-left {
	background: var(--faq-bg);
	border-radius: var(--faq-radius);
	box-shadow: var(--faq-shadow);
	overflow: hidden;
	position: sticky;
	top: 20px;
	border-top: 3px solid var(--faq-secondary);
}

.faq-style-2 .faq-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-style-2 .faq-category-item {
	border-bottom: 1px solid var(--faq-border);
}

.faq-style-2 .faq-category-item:last-child {
	border-bottom: none;
}

.faq-style-2 .faq-category-link {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 14px 18px;
	color: var(--faq-text-body);
	background: transparent;
	border: none;
	border-left: 3px solid transparent;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}

.faq-style-2 .faq-category-link:hover {
	background: #f0f4fa;
	color: var(--faq-primary);
}

.faq-style-2 .faq-category-link.active {
	background: var(--faq-primary);
	color: #fff;
	border-left-color: var(--faq-secondary);
}

.faq-style-2 .faq-category-count {
	margin-left: auto;
	font-size: 12px;
	opacity: 0.75;
}

.faq-style-2 .faq-content-main {
	background: var(--faq-bg);
	border-radius: var(--faq-radius);
	box-shadow: var(--faq-shadow);
	overflow: hidden;
}

.faq-style-2 .faq-search-box {
	padding: 20px 24px;
	border-bottom: 1px solid var(--faq-border);
}

.faq-style-2 .faq-search-input-wrapper {
	position: relative;
}

.faq-style-2 .faq-search-input {
	width: 100%;
	padding: 13px 44px 13px 16px;
	border: 1.5px solid var(--faq-border);
	border-radius: 6px;
	font-size: 14px;
	color: var(--faq-text-dark);
	background: #f9fafb;
}

.faq-style-2 .faq-search-input:focus {
	outline: none;
	border-color: var(--faq-primary);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.faq-style-2 .faq-search-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--faq-text-muted);
	font-size: 16px;
	pointer-events: none;
}

.faq-style-2 .faq-list {
	padding: 0;
}

.faq-style-2 .faq-item {
	border-bottom: 1px solid var(--faq-border);
}

.faq-style-2 .faq-item:last-child {
	border-bottom: none;
}

.faq-style-2 .faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	cursor: pointer;
	user-select: none;
	transition: background 0.25s ease;
}

.faq-style-2 .faq-question:hover {
	background: #fafbfc;
}

.faq-style-2 .faq-question-text {
	font-size: 15px;
	color: var(--faq-text-dark);
	font-weight: 500;
	padding-right: 16px;
	flex: 1;
}

.faq-style-2 .faq-toggle-icon {
	width: 26px;
	height: 26px;
	min-width: 26px;
	border-radius: 50%;
	border: 2px solid var(--faq-primary);
	color: var(--faq-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-style-2 .faq-item.active .faq-toggle-icon {
	background: var(--faq-primary);
	color: #fff;
	transform: rotate(135deg);
}

.faq-style-2 .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-style-2 .faq-item.active .faq-answer {
	max-height: 800px;
}

.faq-style-2 .faq-answer-content {
	padding: 0 24px 20px;
	color: var(--faq-text-body);
	font-size: 14px;
	line-height: 1.8;
}

.faq-style-2 .faq-answer-content p {
	margin: 0 0 0.75em;
}

.faq-style-2 .faq-answer-content p:last-child {
	margin-bottom: 0;
}

.faq-style-2 .faq-answer-content a {
	color: var(--faq-primary);
}

.faq-style-2 .faq-no-results {
	text-align: center;
	padding: 48px 24px;
	color: var(--faq-text-muted);
	font-size: 14px;
}

.faq-style-2 .faq-load-more {
	padding: 20px 24px;
	text-align: center;
	border-top: 1px solid var(--faq-border);
}

.faq-style-2 .faq-load-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 32px;
	border: 1.5px solid var(--faq-border);
	border-radius: 6px;
	background: #fff;
	color: var(--faq-text-body);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s ease;
}

.faq-style-2 .faq-load-more-btn:hover {
	border-color: var(--faq-primary);
	color: var(--faq-primary);
	background: #f8fafc;
}

@media (max-width: 768px) {
	.faq-style-2 .faq-container {
		grid-template-columns: 1fr;
	}

	.faq-style-2 .faq-sidebar-left {
		position: static;
	}

	.faq-style-2 .faq-header-title {
		font-size: 26px;
	}

	.faq-style-2 .faq-category-list {
		display: flex;
		flex-wrap: wrap;
	}

	.faq-style-2 .faq-category-item {
		border-bottom: none;
		border-right: 1px solid var(--faq-border);
		flex: 1 1 140px;
	}

	.faq-style-2 .faq-category-link {
		border-left: none;
		justify-content: center;
		text-align: center;
		flex-direction: column;
		gap: 4px;
	}

	.faq-style-2 .faq-category-count {
		margin-left: 0;
	}
}
