.tb-section {
	padding: 28px;
	border: 1px solid #e3e8ec;
	border-radius: 8px;
	background: #ffffff;
}

.industry-page .tb-section {
	margin-bottom: 28px;
}

.tb-section h2 {
	margin-bottom: 18px;
	font-size: 26px;
	line-height: 1.25;
	font-weight: 700;
}

.tb-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.tb-card {
	min-height: 100%;
	padding: 24px;
	border: 1px solid #e7e7e7;
	border-radius: 8px;
	background: #ffffff;
}

.tb-card h3 {
	margin-bottom: 12px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
}

.tb-card p {
	margin: 0;
	font-size: 17px;
	line-height: 1.55;
}

.tb-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.tb-links a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	color: #111;
	text-decoration: none;
}

@media (max-width: 991px) {
	.tb-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.tb-section {
		padding: 20px;
	}

	.tb-section h2 {
		font-size: 22px;
	}

	.tb-grid {
		grid-template-columns: 1fr;
	}
}
