.property-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.property-gallery__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.property-thumbnail--desktop {
	width: 140px;
	height: auto;
}

.property-thumbnail--mobile {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	.property-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
