#site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px var(--pad-h);
  border-bottom: none;
  direction: ltr;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
}

.site-logo img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-btn {
  background: none;
  border: none;
  color: var(--gray);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.2s;
}

.header-btn:hover {
  color: var(--yellow);
}

.header-btn svg {
  width: 20px;
  height: 20px;
}

.header-btn.active {
  color: var(--yellow);
}

.breadcrumb,
body.single-case .breadcrumb,
body.single-guest .breadcrumb,
body.single-episode .breadcrumb {
  width: var(--godar-shell-width);
  max-width: var(--godar-shell-max);
  margin: 32px auto 0;
  padding: 0;
  font-family: var(--font-fa);
  font-size: 13px;
  font-weight: 500;
  color: rgba(119, 117, 111, 0.72);
  display: flex;
  align-items: center;
  gap: 6px;
  direction: rtl;
  justify-content: flex-start;
}

.breadcrumb a,
.breadcrumb .current,
.breadcrumb .sep {
  color: rgba(119, 117, 111, 0.72);
}

.breadcrumb a:hover {
  color: #FFD925;
}

.breadcrumb .sep {
  opacity: 0.4;
}

:root {
  --godar-header-height: 72px;
  --godar-header-top: 0px;
  --godar-header-bg: #0D0D0D;
}

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

#site-header {
  position: sticky;
  top: var(--godar-header-top);
  width: 100%;
  max-width: none;
  height: var(--godar-header-height);
  min-height: var(--godar-header-height);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--godar-header-bg);
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  direction: ltr;
  z-index: 9999;
}

.site-header-inner {
  width: 100%;
  max-width: var(--godar-shell-max);
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
}

.site-logo,
.header-actions {
  position: static;
  inset: auto;
  transform: none;
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: 100%;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: var(--godar-header-logo-color, #FFD925);
}

.site-logo img,
.custom-logo {
  width: auto !important;
  height: 32px !important;
  max-height: 32px;
  object-fit: contain;
}

.godar-logotype {
  display: inline-flex;
  align-items: center;
  height: 32px;
  color: #FFD925 !important;
  font-size: 32px !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin: 0;
}

.header-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #E8E8E8;
  background: transparent;
  border: 0;
  transition: color 200ms ease;
}

.header-btn:hover,
.header-btn:focus-visible,
.header-btn.active:hover,
.header-btn.active:focus-visible {
  color: #FFD925;
}

.header-btn.active {
  color: #E8E8E8;
}

.header-btn svg {
  width: 24px;
  height: 24px;
}

.menu-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}

.menu-icon span:nth-child(1) {
  top: 5px;
}

.menu-icon span:nth-child(2) {
  top: 11px;
}

.menu-icon span:nth-child(3) {
  top: 17px;
}

#menuToggle.active .menu-icon span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

#menuToggle.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

#menuToggle.active .menu-icon span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

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

@media (max-width: 768px) {
  :root {
    --godar-shell-gutter: 20px;
    --godar-header-height: 56px;
  }

  .site-header-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-logo img,
  .custom-logo {
    height: 24px !important;
    max-height: 24px;
  }

  .godar-logotype {
    height: 24px;
    font-size: 24px !important;
  }

  .header-actions {
    gap: 24px;
  }

  #site-footer {
    padding-top: 34px;
    padding-bottom: 38px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --godar-shell-gutter: 32px;
    --godar-header-height: 64px;
  }

  .site-header-inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .site-logo img,
  .custom-logo {
    height: 28px !important;
    max-height: 28px;
  }

  .godar-logotype {
    height: 28px;
    font-size: 28px !important;
  }
}
