/* ---------- PAST COUNCIL SECTION ---------- */
.past-council-section {
  background: var(--bg-secondary);
}

.council-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.council-year {
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.council-year.active {
  border-color: var(--bull-green);
}

.council-year-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--bg-card);
  cursor: pointer;
  transition: background var(--transition-fast);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  color: var(--text-primary);
  width: 100%;
  text-align: left;
}

.council-year-header:hover {
  background: var(--bg-card-hover);
}

.council-year-header .arrow {
  font-size: 0.8rem;
  color: var(--bull-green);
  transition: transform var(--transition-normal);
}

.council-year.active .arrow {
  transform: rotate(180deg);
}

.council-year-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  background: var(--bg-surface);
}

.council-year.active .council-year-body {
  max-height: 2000px;
}

.council-members-list {
  padding: 16px 24px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.council-member-mini {
  position: relative;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: all var(--transition-fast);
  overflow: hidden;
}

.council-member-mini:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
}

.council-member-mini .mini-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.25;
}

.council-member-mini .mini-role {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  margin-top: 3px;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
}

.council-subgroup {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.council-subgroup-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--bull-green);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
