:root {
  --graphico-shell-bg: #111719;
  --graphico-shell-text: #f1f5f6;
  --graphico-shell-muted: #91a0a4;
  --graphico-shell-line: #344044;
  --graphico-shell-accent: #22d3ee;
  --graphico-shell-width: 880px;
  --graphico-shell-gutter: 48px;
}

.g-shell-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.g-shell-header {
  flex: 0 0 auto;
  background: transparent;
}

.g-shell-inner,
.g-shell-footer-inner,
.g-shell-page > main {
  width: min(var(--graphico-shell-width), calc(100% - var(--graphico-shell-gutter)));
  margin-left: auto;
  margin-right: auto;
}

.g-shell-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0 26px;
}

.g-shell-brand {
  display: inline-block;
  width: 176px;
  height: 25px;
  flex: 0 0 auto;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  background: url("graphico-logo.png") left center / contain no-repeat;
}

.g-shell-mark {
  display: none;
}

.g-shell-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.g-shell-nav a {
  color: var(--graphico-shell-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: color .15s ease;
}

.g-shell-nav a:hover,
.g-shell-nav a:focus-visible,
.g-shell-nav a[aria-current="page"] {
  color: var(--graphico-shell-text);
}

.g-shell-page > main {
  flex: 1 0 auto;
}


.mset-local-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  margin: -18px 0 28px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--graphico-shell-line);
}

.mset-local-nav a {
  color: #bcc7ca;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  transition: color .15s ease;
}

.mset-local-nav a + a::before {
  content: "·";
  display: inline-block;
  margin: 0 12px;
  color: #566468;
  pointer-events: none;
}

.mset-local-nav a:hover,
.mset-local-nav a:focus-visible {
  color: var(--graphico-shell-text);
}

.mset-local-nav a[aria-current="page"] {
  color: var(--graphico-shell-accent);
}

.g-shell-page .subpage {
  padding-top: 0;
}

.g-shell-footer {
  flex: 0 0 auto;
  background: transparent;
}

.g-shell-footer-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--graphico-shell-line);
  padding: 20px 0 30px;
}

.g-shell-footer p {
  margin: 0;
  color: #bcc7ca;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.g-shell-footer-tail {
  margin-left: .45em;
  color: #7f8d91;
  font-size: .82em;
  font-weight: 400;
}

.g-shell-build {
  flex: 0 0 auto;
  margin-left: auto;
  color: #465256;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .02em;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .mset-local-nav {
    gap: 8px 18px;
  }

  .mset-local-nav a + a::before {
    content: none;
  }

  :root {
    --graphico-shell-gutter: 32px;
  }

  .g-shell-inner {
    padding: 30px 0 20px;
  }

  .g-shell-brand {
    width: 154px;
    height: 22px;
  }

  .g-shell-nav {
    gap: 16px;
  }

  .g-shell-nav a {
    font-size: 13px;
  }

  .g-shell-footer-inner {
    padding: 18px 0 24px;
  }

  .g-shell-footer p {
    font-size: 15px;
  }
}
