/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafafa;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0a5cad; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0.75rem 0;
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}
.logo span { color: #0a5cad; font-weight: 400; }
.nav-main {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-main a { color: #444; font-size: 0.95rem; }

/* ---------- Main ---------- */
.site-main { padding: 2rem 1.25rem 4rem; }

.hero h1 { font-size: 2.5rem; margin: 0 0 0.5rem; }
.hero .lede { font-size: 1.2rem; color: #555; margin-bottom: 2rem; }

.page-header { margin-bottom: 2rem; }
.page-header h1 { margin-bottom: 0.25rem; }
.page-header .subtitle { color: #666; }

/* ---------- Lists ---------- */
.event-list, .news-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.event-list li, .news-list li { padding: 0.75rem 0; border-bottom: 1px solid #eee; }
.event-list time, .news-list time {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: 600;
  color: #0a5cad;
}
.event-list .venue, .news-list .source {
  display: inline-block;
  margin-left: 0.5rem;
  color: #777;
  font-size: 0.9rem;
}

.see-more { font-weight: 600; }

/* ---------- Cluster grid ---------- */
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.cluster-card {
  display: block;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  color: #1a1a1a;
}
.cluster-card:hover { border-color: #0a5cad; text-decoration: none; }
.cluster-card h3 { margin: 0 0 0.25rem; color: #0a5cad; }
.cluster-card p { margin: 0; color: #555; font-size: 0.95rem; }

/* ---------- Detail pages ---------- */
.event-meta, .news-meta { color: #666; margin: 0.5rem 0 1.5rem; font-size: 0.95rem; }
.event-meta time, .news-meta time { color: #0a5cad; font-weight: 600; }

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #666;
}
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 0.5rem; color: #999; }

.source-attribution {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}

.place-info {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1rem 0 2rem;
}
.place-info p { margin: 0.25rem 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 2rem 0;
  margin-top: 4rem;
}
.site-footer a { color: #fff; }
.nav-footer {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0;
  margin: 1rem 0;
}
.copyright { font-size: 0.85rem; color: #888; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .nav-main { font-size: 0.9rem; gap: 0.75rem; }
}
