.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  width: 160px;
  max-width: 160px;
  height: auto;
  display: block;
}

.site-header {
  padding: 14px 0;
}

@media (max-width: 700px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-logo img {
    width: 130px;
    max-width: 130px;
  }
}