.event-summary {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 0.25rem 1.15rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: inherit;
  text-decoration: none;
}

.event-summary:last-child {
  border-bottom: 0;
}

.event-summary:hover {
  background: rgba(211, 0, 0, 0.06);
}

.event-summary-title {
  font-weight: 700;
}

.event-summary-meta {
  grid-column: 2;
  color: #666;
  font-size: 0.82rem;
}

.event-status {
  display: inline-block;
  min-width: 5.2rem;
  box-sizing: border-box;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.event-status-upcoming {
  background: #d30000;
}

.event-status-tentative {
  background: #d36d00;
}

.event-status-cancelled {
  background: #5d2b7a;
}

.event-status-ended {
  background: #666;
}

.event-detail-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.event-updated {
  display: block;
  margin-top: 0.8rem;
  color: #666;
}

.event-info-list {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.event-info-intro {
  text-align: center;
}

.event-info-notes {
  text-align: center;
}

.event-info-card {
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

.event-info-card p {
  margin: 0.45rem 0;
}

.event-type {
  margin: 0 0 0.7rem;
  color: #8c0000;
  font-size: 0.85rem;
  font-weight: 700;
}

.event-info-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: #b00000;
  font-weight: 700;
}

@media (max-width: 600px) {
  .event-summary {
    grid-template-columns: 1fr;
  }

  .event-summary-meta {
    grid-column: 1;
  }

  .event-status {
    width: max-content;
  }
}
