.gallery-scroll {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 1rem;
	-webkit-overflow-scrolling: touch;
	user-select: none;
}

.gallery-scroll img {
	flex: 0 0 auto;
	height: 200px;
	border-radius: 0.75rem;
	cursor: pointer;
	object-fit: cover;
	user-select: none;
	transition: transform 0.2s ease;
}

.gallery-scroll img:hover {
	transform: scale(1.05);
}

.gallery-scroll::-webkit-scrollbar {
	height: 8px;
}
.gallery-scroll::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

/* Overlay */
.img-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	cursor: pointer;
}

.img-overlay img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 1rem;
	box-shadow: 0 0 20px #000;
}

.img-close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 3rem;
	color: white;
	cursor: pointer;
	user-select: none;
	z-index: 1100;
}


.mini-gallery{
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
	display: grid;
	gap: 2rem;
	justify-content: center;
	grid-template-columns: auto auto auto auto;
}

.mini-gallery img{
	object-fit: cover;
	width: 100%;
	height: 180px;
	border-radius: 0.75rem;
}

@media screen and (max-width: 600px) {
	.mini-gallery{
		grid-template-columns: auto auto;
	}
}