.asg-gallery-preview {
	--asg-gallery-preview-columns: 5;
	text-align: center;
}

.asg-gallery-preview-heading {
	color: var(--asg-maroon, #70151b);
	font-size: 32px;
	margin: 0 0 32px;
}

.asg-gallery-preview-grid {
	display: grid;
	grid-template-columns: repeat(var(--asg-gallery-preview-columns), 1fr);
	gap: 20px;
	text-align: left;
}

.asg-gallery-preview-grid .asg-gallery-item {
	overflow: hidden;
}

.asg-gallery-preview-grid .asg-gallery-media {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 4px;
	background: #f2ede4;
}

.asg-gallery-preview-grid .asg-gallery-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.asg-gallery-preview-grid .asg-gallery-item:hover .asg-gallery-img {
	transform: scale(1.06);
}

.asg-gallery-preview-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 32px;
}

.asg-gallery-preview-btn {
	display: inline-block;
	background: var(--asg-maroon, #70151b);
	color: #fff;
	text-decoration: none;
	padding: 12px 32px;
	border-radius: 4px;
	font-weight: 600;
	transition: background .2s ease;
}

.asg-gallery-preview-btn:hover {
	background: var(--asg-maroon-dark, #4d1010);
	color: #fff;
}

/* ---- Small phones (320-400px) ---- */

@media (max-width: 400px) {
	.asg-gallery-preview {
		--asg-gallery-preview-columns: 2;
	}
}
