/**
 * Brand Standard — shared homepage section styles.
 */

.vn-brand-home .vn-section {
	padding: 3rem 0;
}

.vn-brand-home-intro__inner {
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 992px) {
	.vn-brand-home-intro__inner {
		grid-template-columns: 1fr 1fr;
	}
}

.vn-brand-home-intro__media img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.vn-site-unconfigured h1 {
	font-size: 1.5rem;
}

/**
 * Shared featured-products grid for Brand Standard variants that reuse
 * templates/home/sections/featured-products.php (not Sakyo promo_side).
 */
.vn-brand .vn-featured-products .vn-product-grid {
	display: grid;
	grid-template-columns: repeat(var(--vn-fp-cols-mobile, 2), minmax(0, 1fr));
	gap: 14px 10px;
	align-items: stretch;
	width: 100%;
}

@media (min-width: 768px) {
	.vn-brand .vn-featured-products .vn-product-grid {
		grid-template-columns: repeat(var(--vn-fp-cols-tablet, 2), minmax(0, 1fr));
		gap: 22px 18px;
	}
}

@media (min-width: 1024px) {
	.vn-brand .vn-featured-products .vn-product-grid {
		grid-template-columns: repeat(var(--vn-fp-cols-desktop, 3), minmax(0, 1fr));
		gap: 24px 20px;
	}
}

.vn-brand .vn-featured-products .vn-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	border: 1px solid #ececec;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	background: #fff;
	overflow: hidden;
}

.vn-brand .vn-featured-products .vn-product-card__img-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #fafafa;
	overflow: hidden;
}

.vn-brand .vn-featured-products .vn-product-card__img,
.vn-brand .vn-featured-products .vn-product-card__img-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.vn-brand .vn-featured-products .vn-product-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px 16px 18px;
}

.vn-brand .vn-featured-products .vn-product-card__title {
	font-size: 0.875rem;
	line-height: 1.45;
	margin: 0 0 10px;
	min-height: 2.9em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.vn-brand .vn-featured-products .vn-product-card__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
}
