/**
 * Barrington Sales Events — public product grid
 */

.bse-products-grid {
	display: grid;
	grid-template-columns: repeat(var(--bse-product-cols, 5), minmax(0, 1fr));
	gap: 1.5rem 1.25rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem 0 2rem;
}

.bse-products-grid__empty {
	grid-column: 1 / -1;
	margin: 0;
	color: #555;
}

.bse-product-card {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	box-sizing: border-box;
}

.bse-product-card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0;
	padding: 0.75rem;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	background: #fff;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	height: 100%;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bse-product-card__link:hover,
.bse-product-card__link:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: none;
}

.bse-product-card__link:focus-visible {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

.bse-product-card__media {
	width: 100%;
	margin: 0 0 0.75rem;
	line-height: 0;
}

.bse-product-card__media img,
.bse-product-card__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	max-height: 220px;
}

.bse-product-card__title {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
}

/* Page shell (template) */
.bse-product-grid-page {
	padding: 0 1.5rem 3rem;
	box-sizing: border-box;
}

.bse-product-grid-page .bse-products-grid {
	max-width: 1200px;
}

@media screen and (max-width: 960px) {
	.bse-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 600px) {
	.bse-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 0.75rem;
	}
}

@media screen and (max-width: 380px) {
	.bse-products-grid {
		grid-template-columns: 1fr;
	}
}
