/* Gallery styles updated to match landing-page look and responsive grid */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	align-items: start;
}

.gallery_item {
	background: rgba(245, 240, 232, 0.02);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.gallery_item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.section-title {
	font-family: "Dongle", sans-serif;
	font-size: clamp(2.4rem, 6vw, 3.6rem);
	color: var(--text);
	margin-bottom: 0.25rem;
}

.section-label {
	color: var(--muted);
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.gallery_item {
		cursor: default;
	}
}
/* make gallery tighter on small screens */
@media (max-width: 600px) {
	.gallery {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.gallery_item img {
		aspect-ratio: 3 / 4;
	}
}

@media (max-width: 480px) {
	.container {
		margin-top: 3rem;
	}
}
