:root {
  --wg2026-orange: #ff6b00;
  --wg2026-orange-2: #ff8a2a;
  --wg2026-orange-3: #ffb15c;
  --wg2026-soft: #d8c9bb;
  --wg2026-muted: #9f938a;
  --wg2026-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --wg2026-radius: 10px;
  --wg2026-card-radius: 8px;
  --wg2026-header-h: 94px;
}

.site,
#page {
  padding-top: var(--wg2026-header-h) !important;
}

body.admin-bar .site,
body.admin-bar #page {
  padding-top: calc(var(--wg2026-header-h) + 32px) !important;
}

.wg2026-header,
.wg2026-header * {
  box-sizing: border-box;
}

.wg2026-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  padding: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  /* Echter Top-Header: volle Breite, buendig oben, kein Schweben.
     Hintergrund + Trennlinie sitzen am Header selbst (full-width), damit beim
     Scrollen NICHTS ueber oder neben der Navi durchscheint. */
  background:
    linear-gradient(180deg, rgba(255, 243, 231, 0.035), rgba(255, 243, 231, 0.015)),
    rgba(8, 9, 13, 0.94);
  border-bottom: 1px solid rgba(255, 243, 231, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wg2026-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 243, 231, 0.03), rgba(255, 243, 231, 0.01)),
    rgba(8, 9, 13, 0.975);
  border-bottom-color: rgba(255, 107, 0, 0.28);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

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

.wg2026-header a {
  color: inherit;
  text-decoration: none;
}

.wg2026-header button,
.wg2026-search-overlay button,
.wg2026-search-overlay input {
  font: inherit;
}

.wg2026-header button,
.wg2026-search-overlay button {
  color: inherit;
}

.wg2026-header svg,
.wg2026-search-overlay svg,
.wg2026-header img {
  display: block;
}

.wg2026-header__bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(1760px, 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 9px 24px;
  /* Bar ist jetzt nur noch zentrierter Content-Wrapper -- kein Insel-Rahmen,
     keine eigene Flaeche/Schatten (sitzt am aeusseren .wg2026-header). */
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wg2026-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.wg2026-brand__img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.38);
  border-radius: var(--wg2026-card-radius);
  background: #151515;
  box-shadow:
    0 0 0 1px rgba(255, 243, 231, 0.07),
    0 0 36px rgba(255, 107, 0, 0.36);
}

.wg2026-brand__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg2026-brand__text {
  display: grid;
  min-width: 0;
}

.wg2026-brand__name {
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.wg2026-brand__tag {
  margin-top: 7px;
  color: var(--wg2026-orange-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wg2026-main-nav {
  min-width: 0;
}

.wg2026-nav-list,
.wg2026-actions {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wg2026-nav-list {
  justify-content: center;
  gap: 10px;
}

.wg2026-actions {
  justify-content: flex-end;
  gap: 10px;
}

.wg2026-nav-link,
.wg2026-nav-button,
.wg2026-action-button,
.wg2026-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--wg2026-radius);
  padding: 10px 16px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.wg2026-nav-button,
.wg2026-action-button,
.wg2026-mobile-toggle {
  cursor: pointer;
}

.wg2026-nav-link:hover,
.wg2026-nav-link:focus-visible,
.wg2026-nav-button:hover,
.wg2026-nav-button:focus-visible,
.wg2026-nav-button[aria-expanded="true"],
.wg2026-action-button:hover,
.wg2026-action-button:focus-visible,
.wg2026-mobile-toggle:hover,
.wg2026-mobile-toggle:focus-visible {
  border-color: rgba(255, 243, 231, 0.13);
  background: rgba(255, 243, 231, 0.06);
  outline: none;
}

.wg2026-nav-button.is-current,
.wg2026-nav-link.is-current {
  color: var(--wg2026-orange-3);
  border-color: rgba(255, 107, 0, 0.34);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.16), rgba(255, 107, 0, 0.04));
}

.wg2026-nav-button.is-current .wg2026-nav-icon,
.wg2026-nav-link.is-current .wg2026-nav-icon {
  border-color: rgba(255, 107, 0, 0.45);
  background: rgba(255, 107, 0, 0.16);
  color: var(--wg2026-orange-2);
}

/* Hover/Offen: Icon glimmt orange -> spuerbarer Mouseover-Effekt */
.wg2026-nav-button:hover .wg2026-nav-icon,
.wg2026-nav-button:focus-visible .wg2026-nav-icon,
.wg2026-nav-button[aria-expanded="true"] .wg2026-nav-icon {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.12);
  color: var(--wg2026-orange-2);
}

.wg2026-nav-button[aria-expanded="true"] {
  border-color: rgba(255, 107, 0, 0.3);
}

.wg2026-nav-button.is-film,
.wg2026-nav-link.is-film {
  background: linear-gradient(180deg, rgba(120, 112, 255, 0.22), rgba(255, 243, 231, 0.04));
}

.wg2026-nav-button.is-guide,
.wg2026-nav-link.is-guide {
  border-color: rgba(255, 107, 0, 0.32);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.18), rgba(255, 107, 0, 0.055));
}

.wg2026-nav-button.is-tv,
.wg2026-nav-link.is-tv {
  background: linear-gradient(180deg, rgba(255, 200, 97, 0.14), rgba(255, 107, 0, 0.035));
}

.wg2026-nav-link.is-prime {
  border-color: rgba(255, 107, 0, 0.48);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.28), rgba(255, 107, 0, 0.08));
  box-shadow: 0 0 26px rgba(255, 107, 0, 0.12);
}

.wg2026-nav-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 243, 231, 0.11);
  border-radius: 7px;
  background: rgba(255, 243, 231, 0.06);
  color: var(--wg2026-orange-3);
}

.wg2026-nav-icon svg {
  width: 15px;
  height: 15px;
}

.wg2026-nav-caret {
  width: 14px;
  height: 14px;
  color: var(--wg2026-muted);
  transition: transform 180ms ease, color 180ms ease;
}

.wg2026-nav-button[aria-expanded="true"] .wg2026-nav-caret {
  color: var(--wg2026-orange-2);
  transform: rotate(180deg);
}

.wg2026-action-button,
.wg2026-mobile-toggle {
  width: 48px;
  padding: 0;
}

.wg2026-action-button svg,
.wg2026-mobile-toggle svg {
  width: 20px;
  height: 20px;
}

.wg2026-mobile-toggle {
  display: none;
}

.wg2026-user {
  position: relative;
}

.wg2026-user__button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 243, 231, 0.24);
  border-radius: 50%;
  padding: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.8), transparent 17%),
    linear-gradient(135deg, #f7f0e7, #56555a 42%, #101117);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.wg2026-user__button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg2026-user__button span {
  color: #111;
  font-weight: 950;
}

.wg2026-user-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  min-width: 245px;
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--wg2026-radius);
  padding: 10px;
  background: rgba(14, 14, 20, 0.985);
  box-shadow: var(--wg2026-shadow);
}

.wg2026-user-menu.is-open {
  display: grid;
  gap: 3px;
}

.wg2026-user-menu__head {
  display: grid;
  gap: 4px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 243, 231, 0.1);
  padding: 10px;
}

.wg2026-user-menu__head strong {
  font-size: 0.95rem;
}

.wg2026-level {
  color: var(--wg2026-orange-3);
  font-size: 0.78rem;
  font-weight: 850;
}

.wg2026-level--2 { color: #c0c0c0; }
.wg2026-level--3 { color: #ffd86a; }
.wg2026-level--4 { color: #e5e4e2; }
.wg2026-level--5 { color: #fbbf24; }
.wg2026-level--6 { color: #f472b6; }
.wg2026-level--7 { color: #ff7b8d; }

.wg2026-user-menu a {
  border-radius: var(--wg2026-card-radius);
  padding: 9px 10px;
  color: var(--wg2026-soft);
  font-size: 0.9rem;
  font-weight: 760;
}

.wg2026-user-menu a:hover,
.wg2026-user-menu a:focus-visible {
  background: rgba(255, 107, 0, 0.12);
  color: #fff;
  outline: none;
}

.wg2026-mega {
  position: absolute;
  top: calc(100% + 10px);
  right: 16px;
  left: 16px;
  display: none;
  width: min(100% - 32px, 1760px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.32);
  border-radius: var(--wg2026-radius);
  background:
    linear-gradient(90deg, rgba(255, 107, 0, 0.095), transparent 30%),
    linear-gradient(180deg, rgba(255, 243, 231, 0.035), rgba(255, 243, 231, 0.01)),
    rgba(13, 14, 20, 0.985);
  box-shadow:
    0 0 0 1px rgba(255, 243, 231, 0.04) inset,
    var(--wg2026-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wg2026-mega.is-open {
  display: block;
}

.wg2026-premiere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.06fr;
  min-height: 520px;
}

.wg2026-mega-col {
  padding: 26px 30px;
  border-right: 1px solid rgba(255, 243, 231, 0.08);
}

.wg2026-mega-col:last-child {
  border-right: 0;
}

.wg2026-context-panel {
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.13), transparent 44%),
    linear-gradient(145deg, rgba(54, 17, 12, 0.84), rgba(18, 13, 28, 0.86) 64%),
    rgba(18, 14, 24, 0.92);
}

.wg2026-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--wg2026-muted);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wg2026-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wg2026-orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.11);
  content: "";
}

.wg2026-menu-list {
  display: grid;
  gap: 10px;
}

.wg2026-menu-link {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
  color: var(--wg2026-soft);
  font-weight: 820;
}

.wg2026-menu-link b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 243, 231, 0.12);
  border-radius: 7px;
  background: rgba(255, 243, 231, 0.055);
  color: var(--wg2026-orange-3);
  font-size: 0.8rem;
}

.wg2026-menu-link:hover,
.wg2026-menu-link:focus-visible {
  color: #fff;
  outline: none;
}

.wg2026-feature-stack {
  display: grid;
  gap: 12px;
}

.wg2026-link-card {
  display: grid;
  gap: 4px;
  min-height: 72px;
  border: 1px solid rgba(255, 243, 231, 0.1);
  border-radius: var(--wg2026-card-radius);
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 243, 231, 0.045), rgba(255, 243, 231, 0.015)),
    rgba(255, 243, 231, 0.02);
}

.wg2026-link-card:hover,
.wg2026-link-card:focus-visible {
  border-color: rgba(255, 107, 0, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.13), rgba(255, 107, 0, 0.04)),
    rgba(255, 243, 231, 0.02);
  outline: none;
}

.wg2026-link-card strong {
  color: #fff;
  font-size: 0.96rem;
}

.wg2026-link-card span {
  color: var(--wg2026-muted);
  font-size: 0.82rem;
}

.wg2026-link-card.is-micro {
  min-height: 76px;
}

.wg2026-pill-row,
.wg2026-context-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wg2026-pill,
.wg2026-context-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(255, 243, 231, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 243, 231, 0.045);
  color: var(--wg2026-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.wg2026-pill.is-hot,
.wg2026-context-actions a {
  border-color: rgba(255, 107, 0, 0.42);
  background: rgba(255, 107, 0, 0.13);
  color: #fff;
}

.wg2026-link-card.is-tight {
  min-height: 86px;
}

.wg2026-context-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

.wg2026-context-hero,
.wg2026-context-line {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255, 243, 231, 0.1);
  border-radius: var(--wg2026-card-radius);
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 107, 0, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 243, 231, 0.06), rgba(255, 243, 231, 0.018)),
    rgba(0, 0, 0, 0.18);
}

.wg2026-context-hero {
  min-height: 142px;
  align-content: end;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
}

.wg2026-context-hero:hover,
.wg2026-context-hero:focus-visible,
.wg2026-context-line:hover,
.wg2026-context-line:focus-visible {
  border-color: rgba(255, 107, 0, 0.48);
  outline: none;
}

.wg2026-context-hero span,
.wg2026-context-line span {
  color: var(--wg2026-orange-3);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wg2026-context-hero strong {
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.08;
}

.wg2026-context-hero em,
.wg2026-context-line strong {
  color: var(--wg2026-soft);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.35;
}

.wg2026-context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.wg2026-context-line {
  min-height: 78px;
}

.wg2026-micro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.wg2026-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 0;
  min-height: 330px;
}

.wg2026-compact-grid > * {
  padding: 24px;
  border-right: 1px solid rgba(255, 243, 231, 0.08);
}

.wg2026-compact-grid > *:last-child {
  border-right: 0;
}

.wg2026-card-grid,
.wg2026-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wg2026-mega--small {
  right: 16px;
  left: auto;
  width: min(620px, calc(100% - 32px));
}

.wg2026-more-grid {
  padding: 16px;
}

.wg2026-mobile-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 16px;
  left: 16px;
  display: none;
  width: min(100% - 32px, 680px);
  margin: 0 auto;
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: var(--wg2026-radius);
  padding: 12px;
  background: rgba(14, 15, 21, 0.985);
  box-shadow: var(--wg2026-shadow);
  max-height: calc(100vh - var(--wg2026-header-h) - 32px);
  max-height: calc(100dvh - var(--wg2026-header-h) - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.wg2026-mobile-panel.is-open {
  display: grid;
  gap: 10px;
}

.wg2026-mobile-search input,
.wg2026-search-dialog input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 243, 231, 0.12);
  border-radius: var(--wg2026-card-radius);
  padding: 0 14px;
  background: rgba(255, 243, 231, 0.055);
  color: #fff;
  font-size: 16px;
  outline: none;
}

.wg2026-mobile-search input:focus,
.wg2026-search-dialog input:focus {
  border-color: rgba(255, 107, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.14);
}

.wg2026-mobile-quick {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wg2026-mobile-quick a,
.wg2026-mobile-account {
  display: grid;
  min-height: 50px;
  align-content: center;
  border: 1px solid rgba(255, 243, 231, 0.1);
  border-radius: var(--wg2026-card-radius);
  padding: 9px 11px;
  background: rgba(255, 243, 231, 0.045);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.wg2026-mobile-quick a.is-hot,
.wg2026-mobile-account {
  border-color: rgba(255, 107, 0, 0.45);
  background: rgba(255, 107, 0, 0.13);
}

/* Mobile-Akkordeon: spiegelt die Desktop-Nav-Gruppen (eine Datenquelle).
   Nativ via <details>/<summary> -> kein JS, 0 INP, RUCSS-sicher (Datei ist exkludiert). */
.wg2026-macc-nav {
  display: grid;
  gap: 8px;
}

.wg2026-macc {
  border: 1px solid rgba(255, 243, 231, 0.1);
  border-radius: var(--wg2026-card-radius);
  background: rgba(255, 243, 231, 0.03);
  overflow: hidden;
}

.wg2026-macc[open] {
  border-color: rgba(255, 107, 0, 0.34);
  background: rgba(255, 107, 0, 0.06);
}

.wg2026-macc__sum {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 9px 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.wg2026-macc__sum::-webkit-details-marker {
  display: none;
}

.wg2026-macc__label {
  flex: 1 1 auto;
  min-width: 0;
}

.wg2026-macc__sum .wg2026-nav-caret {
  flex: 0 0 auto;
  margin-left: auto;
}

.wg2026-macc[open] > .wg2026-macc__sum .wg2026-nav-caret {
  color: var(--wg2026-orange-2);
  transform: rotate(180deg);
}

.wg2026-macc[open] > .wg2026-macc__sum .wg2026-nav-icon {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.12);
  color: var(--wg2026-orange-2);
}

.wg2026-macc__body {
  display: grid;
  gap: 2px;
  padding: 2px 8px 12px;
}

.wg2026-macc__body .wgh-lnk {
  min-height: 46px;
  font-size: 15px;
}

.wg2026-macc__body .wgh-foot {
  margin-top: 8px;
}

.wg2026-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wg2026-search-overlay.is-open {
  display: flex;
}

.wg2026-search-dialog {
  position: relative;
  width: min(680px, 100%);
  border: 1px solid rgba(255, 107, 0, 0.32);
  border-radius: var(--wg2026-radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.11), transparent 44%),
    rgba(13, 14, 20, 0.985);
  box-shadow: var(--wg2026-shadow);
}

.wg2026-search-close {
  position: absolute;
  top: -52px;
  right: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 243, 231, 0.14);
  border-radius: 50%;
  background: rgba(255, 243, 231, 0.06);
  cursor: pointer;
}

.wg2026-search-close svg {
  width: 19px;
  height: 19px;
}

.wg2026-search-label {
  margin: 0 0 14px;
  color: var(--wg2026-orange-3);
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wg2026-header a:focus-visible,
.wg2026-header button:focus-visible,
.wg2026-search-overlay button:focus-visible,
.wg2026-search-overlay input:focus-visible {
  outline: 2px solid var(--wg2026-orange);
  outline-offset: 3px;
}

body.wg2026-mobile-locked {
  overflow: hidden;
}

@media (max-width: 1320px) {
  .wg2026-header__bar {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) auto;
  }

  .wg2026-nav-list {
    gap: 6px;
  }

  .wg2026-nav-link,
  .wg2026-nav-button {
    padding-inline: 11px;
    font-size: 0.9rem;
  }

  .wg2026-mega-col {
    padding-inline: 20px;
  }
}

@media (max-width: 1200px) {
  :root {
    --wg2026-header-h: 92px;
  }

  .wg2026-header__bar {
    grid-template-columns: minmax(220px, 1fr) auto;
    min-height: 70px;
  }

  .wg2026-main-nav,
  .wg2026-actions > .wg2026-action-button,
  .wg2026-user {
    display: none;
  }

  .wg2026-mobile-toggle {
    display: inline-flex;
  }

  .wg2026-mega {
    display: none !important;
  }
}

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

  body.admin-bar .site,
  body.admin-bar #page {
    padding-top: calc(var(--wg2026-header-h) + 46px) !important;
  }
}

@media (max-width: 700px) {
  :root {
    --wg2026-header-h: 74px;
  }

  .wg2026-header {
    padding: 0;
  }

  .wg2026-header__bar {
    padding: 8px 12px;
  }

  .wg2026-brand {
    gap: 9px;
  }

  .wg2026-brand__img {
    width: 54px;
    height: 54px;
  }

  .wg2026-brand__name {
    font-size: 20px;
  }

  .wg2026-brand__tag {
    display: none;
  }

  .wg2026-mobile-panel {
    right: 9px;
    left: 9px;
    width: calc(100% - 18px);
  }
}

@media (max-width: 430px) {
  .wg2026-mobile-quick {
    grid-template-columns: 1fr;
  }
}
