.prop-gallery {
	background: var(--e-global-color-text);
	padding: 64px 0 0;
}

.prop-gallery-header {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 64px 32px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.prop-gallery-header h2 {
	font-family: "Playfair Display", serif;
	font-size: 2rem !important;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.gallery-count {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
}

.gallery-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 280px 280px;
	gap: 2px;
}

.gallery-item {
	overflow: hidden;
	background: #232629;
	cursor: pointer;
	position: relative;
	display: block;
}

.gallery-item:first-child {
	grid-row: 1 / 3;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
	transition: transform 250ms ease, opacity 0.3s;
}

.gallery-item:hover img {
	transform: scale(1.04);
	opacity: 1;
}

.gallery-more {
	position: absolute;
	inset: 0;
	background: rgba(38, 38, 38, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}

.gallery-more span {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}

.gallery-more p {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

.prop-gallery-hidden-images {
	display: none;
}

@media (max-width: 1024px) {
	.prop-gallery-header {
		padding: 0 24px 24px;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px 220px 220px;
	}

	.gallery-item:first-child {
		grid-column: 1 / 3;
		grid-row: auto;
	}
}

@media (max-width: 767px) {
	.prop-gallery {
		padding-top: 40px;
	}

	.prop-gallery-header {
		padding: 0 16px 20px;
	}

	.prop-gallery-header h2 {
		font-size: 1.5rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 220px);
	}

	.gallery-item:first-child {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gallery-item img {
		transition: none !important;
	}
}

