:root {
  --bg: #fafafa;
  --text: #222;
  --accent: #7a5cff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.hero-header {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.25rem;
}

.hero-text .date {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Optional: make grid links a bit lighter on the hero photo */
.grid a {
  background: rgba(255, 255, 255, 0.9);
}

.date {
  opacity: 0.7;
}

h2 {
  margin-top: 2.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.grid a {
  padding: 1rem;
  border: 1px solid #ddd;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 0.2s;
}

.grid a:hover {
  background: #f0f0f0;
}

footer {
  text-align: center;
  margin-top: 4rem;
  opacity: 0.6;
}

