/* Shop Leaflets - [llp_leaflets_grid] shortcode styles */

.llp-leaflets-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.llp-leaflets-grid__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: inherit;
	flex: 0 0 calc((100% / var(--llp-leaflets-grid-columns, 4)) * var(--llp-leaflets-grid-scale, 1) - 1.25rem);
}

@media (max-width: 700px) {
	.llp-leaflets-grid__item {
		flex-basis: calc(50% * var(--llp-leaflets-grid-scale, 1) - 1.25rem);
	}
}

.llp-leaflets-grid__page {
	display: block;
	width: 100%;
	aspect-ratio: var(--llp-leaflets-grid-ratio, 3 / 4);
	border-radius: 6px;
	background-color: #f2f2f2;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	border: 1px solid #e2e2e2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.llp-leaflets-grid__item:hover .llp-leaflets-grid__page,
.llp-leaflets-grid__item:focus-visible .llp-leaflets-grid__page {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
	transform: translateY(-3px);
}

.llp-leaflets-grid__label {
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
}
