/* Header aligned with the active KGV editorial system. */
.kgv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 247, .94);
  border-bottom: 1px solid rgba(21, 21, 21, .11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: Georgia, "Times New Roman", serif;
}

.kgv-header .container {
  width: min(100% - 48px, 1240px);
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 0;
}

.kgv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.kgv-logo {
  display: inline-flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #151515;
  text-decoration: none;
}

.kgv-logo img {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 999px;
}

.kgv-logo span {
  display: grid;
  min-width: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}

.kgv-logo strong {
  display: block;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.kgv-logo small {
  display: block;
  margin-top: 4px;
  color: #5e5a54;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.kgv-nav {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  white-space: nowrap;
}

.kgv-nav a {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-decoration: none;
}

.kgv-nav a::before,
.kgv-nav a::after {
  content: none;
  display: none;
}

.kgv-nav a:hover {
  color: #151515;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.kgv-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #151515;
  cursor: pointer;
}

.kgv-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  border-radius: 0;
  background: currentColor;
}

.kgv-mobile-menu {
  display: none;
}

body.kgv-menu-open {
  overflow: hidden;
}

@media (min-width: 901px) and (max-width: 1320px) {
  .kgv-header-inner,
  .kgv-nav {
    gap: 16px;
  }

  .kgv-nav a {
    font-size: 16px;
  }

  .kgv-logo strong {
    font-size: 25px;
  }

  .kgv-logo small {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .kgv-header .container {
    width: min(100% - 28px, 1240px);
  }

  .kgv-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 16px 0;
  }

  .kgv-logo {
    min-width: 0;
    overflow: hidden;
  }

  .kgv-logo span {
    min-width: 0;
    overflow: hidden;
    font-size: 23px;
  }

  .kgv-logo img {
    width: 52px;
    height: 52px;
  }

  .kgv-logo strong {
    max-width: 100%;
    overflow: hidden;
    color: #151515;
    font-size: clamp(26px, 8vw, 32px);
    font-weight: 900;
    line-height: .95;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kgv-logo small {
    max-width: 100%;
    overflow: hidden;
    color: #5e5a54;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kgv-nav {
    display: none;
  }

  .kgv-menu-toggle {
    display: block;
    justify-self: end;
    margin-left: auto;
  }

  .kgv-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: block;
    background: rgba(43, 42, 38, .28);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
  }

  body.kgv-menu-open .kgv-mobile-menu {
    opacity: 1;
    pointer-events: auto;
  }

  .kgv-mobile-menu__panel {
    width: min(100%, 420px);
    min-height: 100vh;
    margin-left: auto;
    padding: 20px 28px 32px;
    background: #fbfaf7;
    border-left: 1px solid rgba(21, 21, 21, .11);
    box-shadow: -20px 0 50px rgba(0, 0, 0, .12);
    transform: translateX(100%);
    transition: transform .22s ease;
  }

  body.kgv-menu-open .kgv-mobile-menu__panel {
    transform: translateX(0);
  }

  .kgv-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(21, 21, 21, .11);
  }

  .kgv-mobile-menu__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #151515;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
  }

  .kgv-mobile-menu__logo img {
    display: block;
    flex: 0 0 auto;
    border-radius: 999px;
  }

  .kgv-menu-close {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex: 0 0 auto;
    border: 1px solid rgba(21, 21, 21, .11);
    border-radius: 999px;
    background: #fff;
    color: #151515;
    font-size: 32px;
    line-height: 38px;
    cursor: pointer;
  }

  .kgv-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 28px 0;
  }

  .kgv-mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(21, 21, 21, .11);
    color: #151515;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
  }

  .kgv-mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 10px;
    background: #151515;
    color: #fbfaf7;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    text-decoration: none;
  }
}

@media (max-width: 480px) {
  .kgv-header .container {
    width: min(100% - 20px, 1240px);
  }
}
.kgv-nav__donate{min-height:36px!important;padding:0 13px!important;border:1px solid #d8a62a!important;border-radius:999px!important;background:#f4d459;color:#151515!important;font-weight:700!important;text-decoration:none!important}.kgv-nav__donate:hover{background:#ffd75a;transform:translateY(-1px);text-decoration:none!important}.kgv-nav__donate:focus-visible,.kgv-mobile-nav__donate:focus-visible{outline:3px solid rgba(216,166,42,.42);outline-offset:3px}.kgv-nav__donate:active{background:#edc73f;transform:none}@media(max-width:900px){.kgv-mobile-nav__donate{justify-content:center!important;margin-top:12px;border:1px solid #d8a62a!important;border-radius:14px;background:#f4d459;color:#151515!important;font-weight:800!important}.kgv-mobile-nav__donate:hover{background:#ffd75a}.kgv-mobile-nav__donate:active{background:#edc73f}}