.gallery-container {
	padding: 10px;
}

.gallery {
	border: 1px solid #ddd;
	padding: 10px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.gallery-thumbs {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}

.gallery-thumbs img {
	width: 24%;
	height: auto;
	border-radius: 3px;
}

.gallery-title {
	text-align: center;
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
}