.photo-gallery {
	padding: 10px 0 40px;
}

.photo-gallery__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 28px;
}

.photo-gallery__filter {
	appearance: none;
	border: 1px solid #e7e8ea;
	background: #fff;
	color: #333;
	font: normal 14px roboto_rgregular, arial, sans-serif;
	line-height: 1;
	padding: 12px 18px;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.photo-gallery__filter:hover {
	border-color: #ffa800;
	color: #ffa800;
}

.photo-gallery__filter.is-active {
	background: #ffa800;
	border-color: #ffa800;
	color: #fff;
}

.photo-gallery__album {
	margin: 0 0 40px;
}

.photo-gallery__album.is-hidden {
	display: none;
}

.photo-gallery__album-head {
	margin: 0 0 18px;
}

.photo-gallery__album-title {
	margin: 0;
	font: normal 24px roboto_mdmedium, arial, sans-serif;
	line-height: 1.3;
	color: #1a1a1a;
}

.photo-gallery__album-text {
	margin: 8px 0 0;
	color: #666;
	font: normal 14px roboto_ltregular, arial, sans-serif;
	line-height: 1.5;
}

.photo-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.photo-gallery__item {
	display: block;
	position: relative;
	overflow: hidden;
	background: #f3f3f3;
	aspect-ratio: 4 / 3;
}

.photo-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.photo-gallery__item:hover img {
	transform: scale(1.04);
}

.photo-gallery__empty {
	margin: 0;
	padding: 24px 0;
	color: #888;
	font: normal 14px roboto_ltregular, arial, sans-serif;
}

.photo-gallery__lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .88);
	padding: 48px 64px;
}

.photo-gallery__lightbox[hidden] {
	display: none !important;
}

.photo-gallery__lightbox-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.photo-gallery__lightbox-close,
.photo-gallery__lightbox-prev,
.photo-gallery__lightbox-next {
	appearance: none;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	position: absolute;
	font-size: 36px;
	line-height: 1;
	padding: 8px 12px;
	opacity: .85;
	transition: opacity .2s ease;
}

.photo-gallery__lightbox-close:hover,
.photo-gallery__lightbox-prev:hover,
.photo-gallery__lightbox-next:hover {
	opacity: 1;
}

.photo-gallery__lightbox-close {
	top: 12px;
	right: 16px;
	font-size: 42px;
}

.photo-gallery__lightbox-prev {
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.photo-gallery__lightbox-next {
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 1100px) {
	.photo-gallery__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 800px) {
	.photo-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.photo-gallery__album-title {
		font-size: 20px;
	}

	.photo-gallery__lightbox {
		padding: 56px 16px 16px;
	}

	.photo-gallery__lightbox-prev,
	.photo-gallery__lightbox-next {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.photo-gallery__filters {
		gap: 8px;
	}

	.photo-gallery__filter {
		padding: 10px 14px;
		font-size: 13px;
	}
}
