:root {
  --sac-red: #c9282d;
  --text: #111;
  --muted: #666;
}

html,body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  font-weight: 200;
  font-size: 17px;
  background: #ffffff;
}

body {
  padding: 0px;
  box-sizing: border-box;
}

/* Outer wrapper to center content */
.outer-container {
  display: flex;
  justify-content: center;
  padding: 0px 20px;
  box-sizing: border-box;
}

/* Inner container with max-width */
.inner-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1200px;
  width: 100%;
}

.title {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  font-weight: 800;
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text);
  text-align: left;
}

/* Events list */
.right .events {
  max-width: 850px;   /* slightly narrower for balance */
  margin-left: 10px;     /* no forced push further right */
  display: block;
}

/* Card */
.card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.card img {
  width: 140px;
  height: 95px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.card-body { min-width: 0; }

.date {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.month-label {
  display: inline-block;
  /* background: var(--sac-red); */
  color: #black;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 4px 0px;
  border-radius: 4px;
  margin-bottom: 6px;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.card-title {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.excerpt {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.35;
}

.card:hover .card-title {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  body { padding: 24px; }
  .container { grid-template-columns: 1fr; gap: 20px; }
  .title { font-size: 38px; line-height: 1; }
  .right .events { max-width: 100%; }
  .card { gap: 14px; }
  .card img { width: 140px; height: 100px; }
  .card-title { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .title { font-size: 32px; }
  .card img { width: 120px; height: 84px; }
  body { padding: 18px; }
}
