body {
	font-family: 'Inter', sans-serif;
	background-color: #f8f9fa;
	margin: 0;
	padding: 0;
}

#content-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
	padding: 20px;
}

.column {
	width: 600px;
	padding: 10px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#featured {
	max-width: 500px;
	max-height: 600px;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid black;
	border-radius: 5px;
	transition: transform 0.3s ease;
}

#featured:hover {
	transform: scale(1.05);
}

.thumbnail {
	object-fit: cover;
	max-width: 180px;
	max-height: 100px;
	cursor: pointer;
	opacity: 0.5;
	margin: 5px;
	border: 2px solid black;
	border-radius: 5px;
	transition: opacity 0.3s ease, border-color 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
	opacity: 1;
	border-color: #18b5ce;
}

#slide-wrapper {
	max-width: 500px;
	display: flex;
	min-height: 100px;
	align-items: center;
	margin-top: 10px;
}

#slider {
	width: 440px;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-behavior: smooth;
}

#slider::-webkit-scrollbar {
	width: 8px;
}

#slider::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
}

#slider::-webkit-scrollbar-thumb {
	background-color: #dede2e;
	outline: 1px solid slategrey;
	border-radius: 100px;
}

#slider::-webkit-scrollbar-thumb:hover {
	background-color: #18b5ce;
}

.arrow {
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: 0.3s;
	user-select: none;
}

.arrow:hover {
	opacity: 0.7;
	width: 35px;
	height: 35px;
}

h1, h3, h4 {
	margin-bottom: 15px;
}

p {
	font-size: 1.1rem;
	color: #333;
}

button.btn-warning {
	font-weight: bold;
}

#lightbox {
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

#lightbox-img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 8px;
	box-shadow: 0 0 25px rgba(0,0,0,0.9);
	cursor: zoom-out;
	transition: transform 0.3s ease;
}

#lightbox-img:hover {
	transform: scale(1.05);
}