.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}

.page-intro .section-label {
  align-self: start;
}

@media (max-width: 1024px) {
  .section-label {
    gap: 8px;
    font-size: 11px;
    letter-spacing: .14em;
  }

  .section-label::before {
    width: 34px;
  }
}
