.restopro-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin: 0 0 1.5rem;
}

.restopro-gallery a {
	display: block;
	border: 1px solid #e1e1e1;
	overflow: hidden;
	background: #f8f8f8;
	line-height: 0;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.restopro-gallery a:hover {
	border-color: #102786;
	box-shadow: 0 2px 12px rgba(16, 39, 134, 0.2);
}

.restopro-gallery img {
	display: block;
	width: 100%;
	height: auto;
}

.restopro-gallery--videos a {
	position: relative;
}

.restopro-gallery--videos a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	margin: -18px 0 0 -12px;
	border-style: solid;
	border-width: 18px 0 18px 32px;
	border-color: transparent transparent transparent rgba(255, 255, 255, 0.92);
	pointer-events: none;
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

@media (max-width: 992px) {
	.restopro-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.restopro-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.restopro-gallery {
		grid-template-columns: 1fr;
	}
}
