.image-gallery {
	width: 75%;
	position: relative;
}

@media (max-width: 768px) {
	.image-gallery {
		width: 100%;
	}
	.image-gallery .thumbnail-container {
		position: static;
	}
}

.main-image {
	width: 100%;
	height: auto;
}

.thumbnail-container {
	display: flex;
	overflow-x: auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	gap: 10px;
	padding: 10px;
	background: rgba(0, 0, 0, 0.5);
}

.thumbnail-container a {
	width: 120px;
	height: 120px;
	display: block;
	overflow: hidden;
}


.thumbnail {
	width: auto;
	height: 120px;
	opacity: 0.7;
	transition: opacity 0.3s;
	display: block;
	object-fit: cover;
	margin: 0;
}

.thumbnail:hover {
	opacity: 1;
}

.caption {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 16px;
}

.photo-credit {
	color: #6c757d;
	font-size: 16px;
}
