.resido-property-gallery {
	width: 100%;
}

.resido-property-gallery__thumbs {
	--resido-gallery-columns: 6;
	display: grid;
	grid-template-columns: repeat(var(--resido-gallery-columns), minmax(0, 1fr));
	gap: 24px;
}

.resido-property-gallery__thumb {
	position: relative;
	display: block;
	height: 72px;
	padding: 0;
	border: 0;
	background: #edf2f4;
	overflow: hidden;
	text-decoration: none;
	cursor: pointer;
}

.resido-property-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.24s ease;
}

.resido-property-gallery__thumb:hover img {
	transform: scale(1.035);
}

.resido-property-gallery__hidden-link {
	display: none;
}

.resido-property-gallery__show-all {
	display: inline-flex;
	align-items: center;
	margin-top: 12px;
	color: #2f2117;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.resido-property-gallery__show-all:hover {
	color: #b36a2e;
}

.resido-property-gallery__empty {
	padding: 18px 20px;
	border: 1px dashed rgba(47, 74, 134, 0.28);
	background: rgba(47, 74, 134, 0.06);
	color: #2f4a86;
	font-size: 14px;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.resido-property-gallery__thumbs {
		--resido-gallery-columns: 3;
		gap: 12px;
	}

	.resido-property-gallery__thumb {
		height: 64px;
	}
}
