* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: #fafafa;
	color: #111;
	line-height: 1.6;
}

nav {
	background: white;
	border-bottom: 1px solid #e0e0e0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.5px;
}

.nav-link {
	color: #666;
	text-decoration: none;
	font-size: 15px;
	transition: color 0.2s;
}
.nav-link:hover {
	color: #111;
}

main {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 24px;
}

.loading {
	text-align: center;
	padding: 100px 20px;
	color: #666;
	font-size: 15px;
}

.empty-state {
	text-align: center;
	padding: 100px 20px;
	color: #999;
	font-size: 15px;
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 20px;
}

.event-card {
	background: white;
	border: 1px solid #e0e0e0;
	overflow: hidden;
	transition: border-color 0.2s;
}
.event-card:hover {
	border-color: #111;
}

.event-thumbnail {
	width: 100%;
	aspect-ratio: 3 / 4;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.event-content {
	padding: 24px;
}

.event-date {
	font-size: 13px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
	font-weight: 500;
}

.event-title {
	font-size: 20px;
	font-weight: 600;
	color: #111;
	margin-bottom: 8px;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.event-time {
	font-size: 14px;
	color: #666;
	margin-bottom: 16px;
}

.event-description {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
	margin-bottom: 20px;
}

.event-link {
	display: inline-block;
	color: #111;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid #111;
	padding-bottom: 1px;
	transition: opacity 0.2s;
}
.event-link:hover {
	opacity: 0.6;
}

@media (max-width: 768px) {
	.events-grid {
		grid-template-columns: 1fr;
	}
	main {
		padding: 24px 16px;
	}
	.nav-content {
		padding: 16px;
	}
}
