/* VM Sport — Tuotenosto. Lähde: blog.css .vm-blog-product. */
.vm-blog-product {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 18px;
	align-items: center;
	background: var(--vm-bg, #fff);
	border: 1px solid var(--vm-border-subtle, #dedede);
	border-left: 4px solid var(--vm-brand, #2D5C87);
	padding: 18px;
	margin: 28px 0;
}
.vm-blog-product--empty {
	display: block;
	color: var(--vm-fg-muted, #5a5a5a);
	font-size: var(--vm-fs-14, 0.875rem);
}
.vm-blog-product-img {
	width: 140px;
	height: 140px;
	background: var(--vm-bg-card, #f0f0f0);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}
.vm-blog-product-img img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	mix-blend-mode: multiply;
}
.vm-blog-product-brand {
	font-family: var(--vm-font-body, "Work Sans", sans-serif);
	font-weight: 600;
	font-size: var(--vm-fs-12, 0.75rem);
	letter-spacing: var(--vm-tracking-eyebrow, 0.12em);
	text-transform: uppercase;
	color: var(--vm-fg-muted, #5a5a5a);
	margin-bottom: 4px;
}
.vm-blog-product-name {
	font-family: var(--vm-font-body, "Work Sans", sans-serif);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--vm-fg, #000);
	margin: 0 0 8px;
}
.vm-blog-product-body p {
	font-size: var(--vm-fs-14, 0.875rem) !important;
	line-height: 1.55 !important;
	color: var(--vm-fg-muted, #5a5a5a);
	margin: 0 0 12px !important;
}
.vm-blog-product-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.vm-blog-product-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
}
.vm-blog-product-price .now {
	font-family: var(--vm-font-body, "Work Sans", sans-serif);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--vm-fg, #000);
}
.vm-blog-product-price .now .woocommerce-Price-amount {
	font-weight: 700;
}
.vm-blog-product-price .was {
	font-size: var(--vm-fs-13, 0.8125rem);
	color: var(--vm-fg-muted, #5a5a5a);
	text-decoration: line-through;
}
/* Napin perustyyli toistettu tarkoituksella — lohko toimii itsenäisesti
   myös editorissa ilman muiden lohkojen CSS:ää. */
.vm-blog-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	font-family: var(--vm-font-body, "Work Sans", sans-serif);
	font-weight: 600;
	font-size: var(--vm-fs-14, 0.875rem);
	line-height: 1;
	text-decoration: none;
	border-radius: var(--vm-radius-2, 4px);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 120ms ease-out;
	white-space: nowrap;
}
.vm-blog-btn--brand {
	background: var(--vm-brand, #2D5C87);
	color: #fff;
}
.vm-blog-btn--brand:hover {
	background: var(--vm-brand-deep, #0d2b3c);
	color: #fff;
}

@media (max-width: 900px) {
	.vm-blog-product {
		grid-template-columns: 1fr;
	}
	.vm-blog-product-img {
		width: 100%;
		height: 200px;
	}
}
