.gallery-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	margin: 0 auto;
	padding: 20px;
	gap: 20px;
	flex-wrap: nowrap;
}

.gallery-container img {
	width: 90%;
	max-width: 700px;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease;
}

.gallery-btn {
	background: none;
	border: none;
	color: var(--text-color);
	font-size: 2.5rem;
	cursor: pointer;
	padding: 8px 16px;
	transition: color 0.2s ease;
}

.gallery-btn:hover {
	color: var(--accent-color, #3fa9f5);
}
