.header-phones {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.header-phones .header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-phones .header-phone--alt {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
}

.header-phones .header-phone + .header-phone {
  position: relative;
}

@media (min-width: 769px) {
  .header-phones .header-phone + .header-phone::before {
    content: '';
    position: absolute;
    left: -13px;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background: rgba(184, 146, 42, 0.55);
  }
}
