.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.history-section {
  background: var(--cream);
  padding: 64px 0 80px;
}

.history-year-group {
  margin-bottom: 48px;
}

.history-year-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.history-item {
  background: var(--white);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.history-item--cancelled {
  opacity: 0.45;
}

.history-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.history-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.history-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.history-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: var(--muted);
}

.meta-label {
  font-weight: 600;
  color: var(--navy);
  margin-right: 4px;
}

.history-program {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 0.87rem;
  color: var(--text);
}

.history-program li {
  padding: 3px 0 3px 14px;
  position: relative;
}

.history-program li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.history-notes {
  font-size: 0.81rem;
  color: var(--muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.history-loading,
.history-error {
  text-align: center;
  color: var(--muted);
  padding: 48px 0;
  font-size: 0.9rem;
}

.nav-active {
  color: var(--gold) !important;
}

@media (max-width: 600px) {
  .history-item-meta {
    flex-direction: column;
    gap: 6px;
  }
}
