/* ─── Section Tag (shared component) ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: #000;
}

.section-tag .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
}

.section-tag--center {
  justify-content: center;
}

.section-tag--dark-dot .dot {
  background-color: #000;
}

.section-tag--white {
  color: #888;
}

.section-tag--white .dot {
  background-color: #888;
}
