.header-details {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.header-details-inner {
  display: flex;
  align-items: center;
  gap: 10px 28px;
  min-height: 42px;
  padding-block: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.header-details-address {
  flex: 1 1 360px;
}

.header-details-hours {
  white-space: nowrap;
}

.header-details-phones {
  display: flex;
  gap: 6px 16px;
  flex-wrap: wrap;
}

.header-details-phones a {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .header-details-inner {
    align-items: flex-start;
  }

  .header-details-address {
    flex-basis: 100%;
  }
}

@media (max-width: 600px) {
  .header-details-inner {
    display: grid;
    gap: 5px;
    padding-block: 9px;
  }
}
