.bga-albums {
	display: grid;
	gap: 40px;
}

.bga-album-header {
	margin-bottom: 16px;
}

.bga-album-header h3 {
	margin: 0 0 4px;
}

.bga-album-date {
	font-size: 14px;
	opacity: 0.75;
}

.bga-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 180px));
	gap: 12px;
	justify-content: start;
}

.bga-item {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 10px;
	background: #f2f2f2;
}

.bga-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transition: transform 0.25s ease;
}

.bga-item:hover img {
	transform: scale(1.04);
}

/* Lightbox */
.bga-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	padding: 30px;
}

.bga-lightbox.is-open {
	display: flex;
}

.bga-lightbox img {
	max-width: min(90vw, 1400px);
	max-height: 85vh;
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.bga-lightbox-close,
.bga-lightbox-prev,
.bga-lightbox-next {
	position: absolute;
	background: rgba(255,255,255,0.14);
	color: #fff;
	border: 0;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	padding: 12px 16px;
	border-radius: 8px;
}

.bga-lightbox-close {
	top: 20px;
	right: 20px;
}

.bga-lightbox-prev {
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.bga-lightbox-next {
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}