/* Section labels — gold line accent (replaces // prefix) */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--heading-font, 'Syne', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted, #666);
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-ochre, #B8924E) 0%, rgba(184, 146, 78, 0.25) 100%);
  flex-shrink: 0;
}

.section-label--gold {
  color: var(--accent-ochre, #B8924E);
}

.section-label--gold::before {
  width: 40px;
  background: var(--accent-ochre, #B8924E);
}

.section-label--footer {
  display: flex;
  color: var(--text-dark, #0A0A0A);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-label--footer::before {
  width: 24px;
}

.section-label--inverse {
  color: rgba(255, 255, 255, 0.55);
}

.section-label--inverse::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
}

/* Index grid overlay labels */
.cut-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font, 'Syne', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(227, 197, 136, 0.9) !important;
}

.cut-label .label-index {
  color: #A37A3E !important;
  font-weight: 800;
}

.cut-label .label-sep {
  display: block;
  width: 18px;
  height: 1px;
  background: #A37A3E !important;
}

.cut-overlay h3 {
  color: #E3C588 !important;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* About manifesto list */
.manifesto-list li::before {
  content: '' !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid var(--accent-ochre, #B8924E);
  transform: translateY(-50%) rotate(45deg);
}
