/* Your existing CSS styles */
.gallery-title {
	text-align: center;
	color: #333;
	margin: 2rem 0;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	padding: 0 1rem;
}

.gallery-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.02);
}

.gallery-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.image-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.7);
	color: white;
	padding: 0.75rem;
	text-align: center;
}

.no-images {
	text-align: center;
	grid-column: 1/-1;
	color: #666;
	padding: 2rem;
}

/* Lightbox adjustments */
.gallery-item a {
	display: block;
	position: relative;
}
.lightbox img {
	max-height: 80vh;
}
