.msc-content-hub,
.msc-article-products,
.msc-article-cta {
	margin: 40px 0;
}
.msc-section-head {
	max-width: 820px;
	margin-bottom: 24px;
}
.msc-section-head h1 {
	margin: 0 0 10px;
}
.msc-article-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.msc-article-card {
	background: var(--msc-card-bg, #fff);
	border: 1px solid var(--msc-border, #e5e7eb);
	border-radius: var(--msc-card-radius, 16px);
	overflow: hidden;
	box-shadow: var(--msc-card-shadow, 0 10px 30px rgba(15, 23, 42, .06));
}
.msc-article-card-image {
	display: block;
	aspect-ratio: 16 / 10;
	background: #f3f4f6;
}
.msc-article-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.msc-article-card-body {
	padding: 18px;
}
.msc-article-card-body h2 {
	font-size: 20px;
	line-height: 1.25;
	margin: 6px 0 10px;
}
.msc-article-card-body h2 a {
	color: inherit;
	text-decoration: none;
}
.msc-article-date {
	font-size: 13px;
	color: var(--msc-muted, #6b7280);
}
.msc-article-products h2 {
	margin-bottom: 18px;
}
.msc-products-grid-small {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.msc-article-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px;
	border-radius: 20px;
	background: var(--msc-soft-bg, #f3f8ff);
	border: 1px solid var(--msc-border, #e5e7eb);
}
.msc-article-cta h2 {
	margin: 0 0 8px;
}
.msc-article-cta p {
	margin: 0;
}
@media (max-width: 900px) {
	.msc-article-grid,
	.msc-products-grid-small {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.msc-article-cta {
		align-items: flex-start;
		flex-direction: column;
	}
}
@media (max-width: 560px) {
	.msc-article-grid,
	.msc-products-grid-small {
		grid-template-columns: 1fr;
	}
}
