/* =========================================
   Memorial Showroom
========================================= */

.foogallery-memorial-showroom {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 28px !important;
	align-items: start;
}

/* Card */
.foogallery-memorial-showroom .fg-item {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	display: block !important;
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease;
}

.foogallery-memorial-showroom .fg-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
	border-color: rgba(0, 0, 0, 0.08);
}

/* Inner structure */
.foogallery-memorial-showroom .fg-item-inner {
	display: block;
	height: 100%;
}

/* Thumbnail area */
.foogallery-memorial-showroom .fg-thumb {
	display: block;
	text-decoration: none;
	color: inherit;
}

.foogallery-memorial-showroom .fg-image-wrap {
	display: block;
	position: relative;
	background: #f7f7f7;
}

.foogallery-memorial-showroom .fg-image,
.foogallery-memorial-showroom img {
	width: 100% !important;
	height: auto !important;
	display: block !important;
	object-fit: contain;
}

/* Softer overlay */
.foogallery-memorial-showroom .fg-image-overlay {
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.08) 0%,
		rgba(0, 0, 0, 0.02) 45%,
		rgba(0, 0, 0, 0) 100%
	);
	opacity: 1;
	transition: opacity 0.22s ease;
}

.foogallery-memorial-showroom .fg-item:hover .fg-image-overlay {
	opacity: 0.75;
}

/* Caption area */
.foogallery-memorial-showroom .fg-caption {
	padding: 18px 18px 20px;
	background: #ffffff;
}

.foogallery-memorial-showroom .fg-caption-inner {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* Title */
.foogallery-memorial-showroom .fg-caption-title,
.foogallery-memorial-showroom .fg-item-title {
	font-size: 19px;
	line-height: 1.3;
	margin: 0;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #2f2f2f;
}

/* Optional description, if you turn it on later */
.foogallery-memorial-showroom .fg-caption-desc,
.foogallery-memorial-showroom .fg-item-desc {
	font-size: 14px;
	line-height: 1.5;
	color: #6d6d6d;
	margin: 0;
}

/* Loader cleanup */
.foogallery-memorial-showroom .fg-loader {
	display: none;
}

/* Give cards a bit more air on larger screens */
@media (min-width: 1280px) {
	.foogallery-memorial-showroom {
		gap: 32px !important;
	}
}

/* Tablet */
@media (max-width: 1024px) {
	.foogallery-memorial-showroom {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 22px !important;
	}
}

/* Mobile */
@media (max-width: 640px) {
	.foogallery-memorial-showroom {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}

	.foogallery-memorial-showroom .fg-caption {
		padding: 16px 16px 18px;
	}

	.foogallery-memorial-showroom .fg-caption-title,
	.foogallery-memorial-showroom .fg-item-title {
		font-size: 18px;
	}
}