.v-site-header {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 32, 29, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #15201d;
  font-family:
    Inter, Satoshi, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  box-shadow: 0 14px 34px rgba(20, 32, 29, 0.08);
  backdrop-filter: blur(14px);
}

.v-site-header a {
  color: inherit;
}

.v-site-header__left,
.v-site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.v-site-header__brand {
  color: #15201d;
  text-decoration: none;
}

.v-site-header__instagram {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  color: #c86136;
  text-decoration: none;
}

.v-site-header__instagram:hover {
  background: rgba(200, 97, 54, 0.1);
}

.v-site-header__name {
  overflow: hidden;
  color: #15201d;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v-site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.v-site-header__nav,
.v-site-header__lang {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.v-site-header__nav a,
.v-site-header__lang a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 10px;
  color: #65716d;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
}

.v-site-header__nav a:hover,
.v-site-header__lang a:hover {
  background: rgba(43, 122, 120, 0.08);
  color: #174c4b;
}

.v-site-header__nav a[aria-current="page"],
.v-site-header__lang a[aria-current="page"] {
  background: #e8f2f1;
  color: #174c4b;
}

.v-site-header__external {
  color: #c86136 !important;
}

.v-site-header__lang {
  padding-left: 14px;
  border-left: 1px solid rgba(20, 32, 29, 0.14);
}

@media (max-width: 820px) {
  .v-site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .v-site-header__right {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .v-site-header__lang {
    padding-left: 0;
    border-left: 0;
  }
}
