/* ── PhotoSwipe gallery (news detail) ── */
.article-photo-block { margin-top: 1.5rem; }

.article-photo-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: .75rem;
}

.article-photo-item {
	display: block;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(255,255,255,.05);
	transition: opacity .2s;
}

.article-photo-item:hover { opacity: .8; }

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

@media (max-width: 479px) {
	.article-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
