:root {
  --vn-ink: #172033;
  --vn-muted: #5f6b7a;
  --vn-surface: #ffffff;
  --vn-canvas: #f4f7fb;
  --vn-border: #dbe3ec;
  --vn-brand: #135f53;
  --vn-brand-dark: #0b443b;
  --vn-accent: #f5b82e;
  --vn-radius: 14px;
  --vn-shadow: 0 8px 26px rgba(23, 32, 51, 0.08);
  --vn-content: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--vn-canvas);
  color: var(--vn-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.admin-bar .vn-site-header {
  top: 32px;
}

a {
  color: var(--vn-brand);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  color: var(--vn-brand-dark);
}

img {
  height: auto;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(19, 95, 83, 0.35);
  outline-offset: 3px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--vn-surface);
  clip: auto !important;
  clip-path: none;
  color: var(--vn-ink);
  display: block;
  font-weight: 700;
  height: auto;
  left: 1rem;
  padding: 0.75rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 100000;
}

.vn-skip-link {
  background: var(--vn-surface);
  border-radius: 8px;
  color: var(--vn-ink);
  font-weight: 800;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -8rem;
  z-index: 100001;
}

.vn-skip-link:focus {
  top: 1rem;
}

.vn-site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--vn-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.vn-header-shell {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--vn-content);
  min-height: 4.75rem;
  padding: 0.65rem 1.25rem;
}

.vn-brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 0.75rem;
  min-width: 0;
}

.custom-logo-link {
  display: inline-flex;
}

.custom-logo {
  max-height: 3rem;
  max-width: min(14rem, 56vw);
  object-fit: contain;
  width: auto;
}

.site-title {
  color: var(--vn-ink);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-title:hover {
  color: var(--vn-brand);
}

.vn-wordmark__mark {
  align-items: center;
  background: var(--vn-brand);
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  font-size: 0.62rem;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  width: 3rem;
}

.vn-wordmark__mark small {
  font-size: 0.58rem;
  margin-right: 0.08rem;
}

.vn-wordmark {
  align-items: center;
  color: var(--vn-ink);
  display: inline-flex;
  gap: 0.68rem;
  text-decoration: none;
}

.vn-wordmark__text {
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.vn-wordmark__text span {
  color: var(--vn-brand);
}

.vn-primary-navigation ul {
  align-items: center;
  display: flex;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vn-primary-navigation a {
  border-radius: 8px;
  color: var(--vn-ink);
  display: block;
  font-size: 0.94rem;
  font-weight: 650;
  padding: 0.62rem 0.72rem;
  text-decoration: none;
}

.vn-primary-navigation a:hover,
.vn-primary-navigation a:focus-visible,
.vn-primary-navigation .current-menu-item > a {
  background: #e9f3f1;
  color: var(--vn-brand-dark);
}

.vn-menu-toggle {
  align-items: center;
  background: var(--vn-surface);
  border: 1px solid var(--vn-border);
  border-radius: 9px;
  color: var(--vn-ink);
  cursor: pointer;
  display: none;
  font-weight: 700;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.8rem;
}

.vn-menu-toggle > span:not(.screen-reader-text) {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  width: 1.2rem;
}

.vn-menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.vn-generic-main {
  min-height: 62vh;
}

.vn-error-page {
  min-height: 65vh;
  padding-block: clamp(4rem, 10vw, 8rem);
  text-align: center;
}

.vn-error-code {
  color: var(--vn-brand);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin: 0;
}

.vn-theme-button {
  background: var(--vn-brand);
  border-radius: 9px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  margin-top: 1rem;
  padding: 0.72rem 1rem;
  text-decoration: none;
}

.vn-theme-button:hover,
.vn-theme-button:focus-visible {
  background: var(--vn-brand-dark);
  color: #fff;
}

.vn-content-shell {
  margin: 2rem auto 4rem;
  max-width: 52rem;
  padding: 0 1.25rem;
}

.vn-generic-card {
  background: var(--vn-surface);
  border: 1px solid var(--vn-border);
  border-radius: var(--vn-radius);
  box-shadow: var(--vn-shadow);
  margin-bottom: 1.5rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.vn-generic-card h1 {
  font-size: clamp(1.8rem, 5vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.vn-generic-card h1 a {
  color: inherit;
  text-decoration: none;
}

.vn-entry-content > :first-child {
  margin-top: 0;
}

.vn-entry-content > :last-child {
  margin-bottom: 0;
}

.vn-entry-content h2,
.vn-entry-content h3 {
  line-height: 1.25;
  margin-top: 1.8em;
}

.vn-entry-content table {
  border-collapse: collapse;
  display: block;
  max-width: 100%;
  overflow-x: auto;
  width: max-content;
}

.vn-entry-content th,
.vn-entry-content td {
  border: 1px solid var(--vn-border);
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.page-header {
  margin-bottom: 1.5rem;
}

.not-found {
  text-align: center;
}

.not-found .entry-content {
  margin-inline: auto;
  max-width: 38rem;
}

.vn-site-footer {
  background: #102b2a;
  color: #d7e7e4;
  margin-top: 4rem;
}

body.vn-app .vn-site-footer {
  margin-top: 0;
}

.vn-footer-shell {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.25fr 1fr;
  margin: 0 auto;
  max-width: var(--vn-content);
  padding: 2.75rem 1.25rem;
}

.vn-site-footer h2 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
}

.vn-site-footer p {
  margin: 0;
  max-width: 38rem;
}

.vn-footer-brand strong {
  color: #fff;
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.vn-site-footer a {
  color: #fff;
}

.vn-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vn-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #afc5c1;
  font-size: 0.87rem;
  padding: 1rem 1.25rem;
  text-align: center;
}

.alignwide {
  margin-left: calc(50% - 36rem);
  margin-right: calc(50% - 36rem);
  max-width: 72rem;
  width: auto;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.wp-caption,
.gallery-caption {
  color: var(--vn-muted);
  font-size: 0.88rem;
}

.sticky {
  border-color: rgba(19, 95, 83, 0.45);
}

.bypostauthor {
  display: block;
}

@media (max-width: 860px) {
  body.admin-bar .vn-site-header {
    top: 46px;
  }

  .vn-header-shell {
    flex-wrap: wrap;
    gap: 0.6rem;
    min-height: 4rem;
  }

  .vn-menu-toggle {
    display: inline-flex;
  }

  .vn-primary-navigation {
    display: none;
    flex-basis: 100%;
    width: 100%;
  }

  .vn-primary-navigation.is-open {
    display: block;
  }

  .vn-primary-navigation ul {
    align-items: stretch;
    flex-direction: column;
    padding: 0.4rem 0 0.75rem;
  }

  .vn-primary-navigation a {
    padding: 0.75rem;
  }

  .vn-footer-shell {
    grid-template-columns: 1fr;
  }

  .alignwide,
  .alignfull {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 782px) {
  body.admin-bar .vn-site-header {
    top: 46px;
  }
}

@media (max-width: 520px) {
  .vn-header-shell {
    padding-inline: 0.85rem;
  }

  .vn-wordmark__text {
    font-size: 1rem;
  }

  .vn-wordmark__mark {
    height: 2.65rem;
    width: 2.65rem;
  }

  .vn-site-footer {
    margin-top: 2rem;
  }

  .vn-footer-shell {
    gap: 1.35rem;
    padding-block: 2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
