/* TPA FAQ — fonts match site (Abolition + Roboto Condensed) */

.tpa-faq-section {
	background: #000;
	padding: 70px 0;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
}

.tpa-faq-section .container {
	max-width: 1140px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.tpa-faq-layout {
	align-items: flex-start;
}

.tpa-faq-heading {
	color: #2488AD;
	font-family: 'Abolition', sans-serif;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0 0 18px;
	letter-spacing: 0.5px;
}

.tpa-faq-description {
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
}

.tpa-faq-description p {
	margin: 0 0 12px;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
}

.tpa-faq-view-all {
	display: inline-block;
	background: #2488AD;
	color: #fff !important;
	text-decoration: none !important;
	padding: 10px 22px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.5px;
	border: none;
	transition: opacity 0.2s ease;
}

.tpa-faq-view-all:hover {
	opacity: 0.9;
	color: #fff !important;
}

.tpa-faq-tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 22px;
}

.tpa-faq-tab {
	background: #2488AD;
	color: #fff;
	border: none;
	padding: 12px 10px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
	text-align: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.tpa-faq-tab:hover {
	opacity: 0.92;
}

.tpa-faq-tab.is-active {
	background: #fff;
	color: #2488AD;
}

.tpa-faq-panel {
	display: none;
}

.tpa-faq-panel.is-active {
	display: block;
}

.tpa-faq-item {
	margin-bottom: 10px;
}

.tpa-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #2488AD;
	color: #fff;
	border: none;
	padding: 14px 18px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.tpa-faq-question-text {
	flex: 1;
}

.tpa-faq-icon {
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	min-width: 18px;
	text-align: center;
}

.tpa-faq-answer {
	display: none;
	overflow: hidden;
	border: 1px solid #fff;
	border-top: none;
	background: #000;
}

.tpa-faq-answer-inner {
	padding: 18px 20px;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	line-height: 1.65;
}

.tpa-faq-answer-inner p {
	margin: 0 0 12px;
	color: #fff;
}

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

.tpa-faq-empty {
	color: #ccc;
	margin: 0;
	padding: 12px 0;
}

@media (max-width: 991px) {
	.tpa-faq-section {
		padding: 50px 0;
	}

	.tpa-faq-heading {
		font-size: 32px;
		margin-bottom: 14px;
	}

	.tpa-faq-intro {
		margin-bottom: 28px;
	}

	.tpa-faq-tabs {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.tpa-faq-tabs {
		grid-template-columns: 1fr;
	}

	.tpa-faq-heading {
		font-size: 28px;
	}

	.tpa-faq-question {
		font-size: 15px;
		padding: 12px 14px;
	}
}
