/* FG Etsy Reviews — masonry wall of Etsy review screenshots */

.fg-etsy-reviews {
	width: 100%;
}

.fg-etsy-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 2.4em;
}

.fg-etsy-heading {
	margin: 0 0 .4em;
	line-height: 1.2;
}

.fg-etsy-subheading {
	margin: 0;
	line-height: 1.6;
}

/* Masonry via CSS columns — robust, no JS */
.fg-etsy-grid {
	--fg-cols: 3;
	--fg-gap: 14px;
	column-count: var(--fg-cols);
	column-gap: var(--fg-gap);
}

.fg-etsy-item {
	display: block;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	margin-bottom: var(--fg-gap);
	overflow: hidden;
	background-color: #fff;
	border-radius: 10px;
	transition: transform .25s ease, box-shadow .25s ease;
}

.fg-etsy-shadow-yes .fg-etsy-item {
	box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.fg-etsy-item img {
	display: block;
	width: 100%;
	height: auto;
}

a.fg-etsy-item {
	cursor: zoom-in;
}

a.fg-etsy-item:hover {
	transform: translateY(-3px);
}

.fg-etsy-shadow-yes a.fg-etsy-item:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
}

.fg-etsy-empty {
	padding: 2em;
	text-align: center;
	color: #888;
	border: 1px dashed #ccc;
	border-radius: 8px;
}

@media (max-width: 1024px) {
	.fg-etsy-grid { column-count: 2; }
}

@media (max-width: 600px) {
	.fg-etsy-grid { column-count: 1; }
}
