.public-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  font-family: "Roboto", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.public-header-container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 20px;
}

.public-header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 28px;
}

.public-header-brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.public-header-brand img {
  width: 110px;
  height: 44px;
  object-fit: contain;
}

.public-header-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.public-header-navigation a,
.public-header-mobile-panel a {
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.public-header-navigation a:hover,
.public-header-navigation a[aria-current="page"],
.public-header-mobile-panel a:hover,
.public-header-mobile-panel a[aria-current="page"] {
  color: #1d4ed8;
}

.public-header-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.public-header-sign-in {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #020617;
  border-radius: 12px;
  padding-inline: 16px;
  background: #020617;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.public-header-sign-in:hover {
  border-color: #1e293b;
  background: #1e293b;
  color: #fff;
}

.public-header-mobile {
  position: relative;
  display: none;
}

.public-header-menu-button,
.public-header-mobile > summary {
  display: grid;
  width: 40px;
  height: 40px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 4px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.public-header-mobile > summary::-webkit-details-marker {
  display: none;
}

.public-header-menu-button svg {
  width: 20px;
  height: 20px;
}

.public-header-mobile > summary span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
}

.public-header-mobile-panel {
  position: absolute;
  top: 48px;
  right: 0;
  width: min(260px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.public-header-mobile-panel a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
}

.public-header-mobile-panel a:hover,
.public-header-mobile-panel a[aria-current="page"] {
  background: #f8fafc;
}

@media (max-width: 1023px) {
  .public-header-navigation {
    display: none;
  }

  .public-header-mobile {
    display: block;
  }
}

@media (max-width: 620px) {
  .public-header-container {
    padding-inline: 14px;
  }

  .public-header-inner {
    gap: 12px;
  }
}
