.ed-nav-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #eee1db;
  background: rgba(255, 248, 242, 0.96);
  backdrop-filter: blur(14px);
}

.ed-nav-wrap {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ed-nav-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.ed-nav-brand img {
  width: 96px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.ed-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #4f5c61;
  font-size: 0.93rem;
  font-weight: 650;
}

.ed-nav-links a {
  color: inherit;
  text-decoration: none;
}

.ed-nav-links a[aria-current="page"] {
  color: #d56f93;
  font-weight: 760;
}

@media (max-width: 820px) {
  .ed-nav-wrap {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 10px;
  }

  .ed-nav-links {
    justify-content: flex-start;
    gap: 12px 14px;
  }
}
