/* ── Shared green-tick bullet lists inside every product tab ─────────────── */
.woocommerce-tabs .panel ul li {
	list-style: none;
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
}
.woocommerce-tabs .panel ul li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 50%;
	background: #16a34a;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}
.woocommerce-tabs .panel ul {
	margin: 0 0 16px;
	padding: 0;
}

/* ── Benefits tab ──────────────────────────────────────────────────────── */
.ta-tab-benefits-heading {
	margin: 0 0 20px;
}
.ta-tab-benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.ta-tab-benefits-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
}
.ta-tab-benefits-card__img img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}
.ta-tab-benefits-card__body {
	padding: 20px;
}
.ta-tab-benefits-card__body h4 {
	margin: 0 0 12px;
}
@media (max-width: 782px) {
	.ta-tab-benefits-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Why Choose Us tab ────────────────────────────────────────────────── */
.ta-tab-why-choose-us {
	margin-bottom: 32px;
}
.ta-tab-wcu-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #16a34a;
	margin-bottom: 8px;
}
.ta-tab-wcu-heading {
	font-size: 1.75rem;
	margin: 0 0 12px;
}
.ta-tab-wcu-heading span {
	color: #16a34a;
}
.ta-tab-wcu-desc {
	color: #64748b;
	margin: 0 0 20px;
}
.ta-tab-wcu-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.ta-tab-wcu-feature h4 {
	margin: 0 0 6px;
}
.ta-tab-wcu-feature p {
	color: #64748b;
	margin: 0;
}

/* ── Accreditations (inside Why Choose Us tab) ───────────────────────── */
.ta-tab-accreditations {
	margin-top: 8px;
}
.ta-tab-accred-heading {
	margin: 0 0 16px;
}
.ta-tab-accred-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}
.ta-tab-accred-card {
	text-align: center;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 16px;
}
.ta-tab-accred-card img {
	max-width: 100%;
	max-height: 90px;
	object-fit: contain;
	margin: 0 auto 12px;
}
.ta-tab-accred-card h4 {
	margin: 0 0 6px;
	font-size: 14px;
}
.ta-tab-accred-card p {
	margin: 0;
	font-size: 13px;
	color: #64748b;
}

/* ── Resources tab ────────────────────────────────────────────────────── */
.ta-tab-resources-downloads {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}
.ta-tab-resource-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 20px;
	background: #1e40af;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}
.ta-tab-resource-btn:hover {
	background: #1e3a8a;
	color: #fff;
}
.ta-tab-resources-heading {
	margin: 0 0 16px;
}
.ta-tab-resource-articles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ta-tab-article-card {
	display: block;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}
.ta-tab-article-card__thumb img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
}
.ta-tab-article-card__body {
	padding: 14px;
}
.ta-tab-article-card__cat {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #16a34a;
	margin-bottom: 6px;
}
.ta-tab-article-card__body h4 {
	margin: 0 0 8px;
	font-size: 15px;
}
.ta-tab-article-card__body p {
	margin: 0;
	font-size: 13px;
	color: #64748b;
}
@media (max-width: 782px) {
	.ta-tab-resource-articles {
		grid-template-columns: 1fr;
	}
}

/* ── Exam tab ──────────────────────────────────────────────────────────── */
.ta-tab-exam-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}
.ta-tab-exam-fact {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ta-tab-exam-fact__label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #64748b;
}
.ta-tab-exam-fact__value {
	font-size: 15px;
	font-weight: 600;
	color: #1e293b;
}
