.sh-cont{
	max-width: 1620px;
	padding: 0 15px;
	margin: 0 auto;
	background-color: #FBFBFB;
	color: #FBFBFB;
}
.shelter-page {
	padding: 217px 0 126px;
	background-color: #FBFBFB;
}
.shelter-page__gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 70px 34px;
	max-width: 1400px;
	margin: 0 auto;
	justify-items: center;
}
.shelter-page__gallery-img {
	width: 280px;
	height: 280px;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.shelter-page__gallery-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.shelter-page__gallery-item {
	text-align: center;
}
.shelter-page__name {
	font-family: 'Inter';
	font-weight: 400;
	font-size: 26px;
	line-height: 24px;
	margin-top: 34px;
}
@media screen and (max-width: 1260px) {
	.shelter-page__name {
		font-size: 22px;
		line-height: 20px;
	}
	.shelter-page__gallery {
		grid-template-columns: repeat(3, 1fr);
		gap: 50px 30px;
	}
}
@media screen and (max-width: 980px) {
	.shelter-page {
		padding: 150px 0 126px;
	}
	.shelter-page__gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 30px;
	}
}
@media screen and (max-width: 630px) {
	.shelter-page {
		padding: 150px 0 126px;
	}
	.shelter-page__gallery {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}