body {
	margin: 0;
	padding: 24px;
	font-family: Arial, sans-serif;
	background: #f6f8fb;
	color: #1e2630;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, 360px);
	justify-content: start;
	gap: 20px;
}

.project-container {
	display: flex;
	flex-direction: column;
	width: 320px;
	gap: 12px;
	text-decoration: none;
	color: inherit;
	background: #ffffff;
	padding: 12px;
	border-radius: 16px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-container:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.project-image {
	width: 320px;
	height: 160px;
	border-radius: 12px;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.project-container h4 {
	margin: 0;
	font-size: 1rem;
}

.class-selection {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
}

.class-selection h2 {
	padding: 8px 16px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.class-selection h2:hover {
	text-decoration: underline;
	transform: translateY(-4px);
}

.class-selection h2.active {
	text-decoration: underline;
}