/* [jwc_tech_sheets] trade listing grid */

.jwc-ts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 24px;
	width: 100%;
	margin: 20px 0;
}
.jwc-ts-card {
	border: 1px solid rgba(0,0,0,.125);
	border-radius: .25rem;
	background: #fff;
	text-align: center;
	padding: 18px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.jwc-ts-card-img img {
	height: 170px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}
.jwc-ts-card-title {
	margin: 12px 0 2px;
	font-size: 15px;
}
.jwc-ts-card-sub {
	font-size: 12px;
	color: #6c757d;
	margin-bottom: 10px;
}
.jwc-ts-card-link {
	margin-top: auto;
	display: inline-block;
	font-size: 13px;
	letter-spacing: .05em;
	text-transform: uppercase;
	border: 1px solid #231f20;
	color: #231f20;
	padding: 7px 14px;
	text-decoration: none;
	transition: all .15s ease;
}
.jwc-ts-card-link:hover {
	background: #231f20;
	color: #fff;
	text-decoration: none;
}
