/* Canonical public navigation — used with oeom-public-nav.js */
.oeom-pub-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(101, 27, 44, 0.12);
  background: rgba(255, 253, 251, 0.96);
  backdrop-filter: blur(14px);
}
.oeom-pub-header-inner {
  width: min(calc(100% - 36px), 1180px);
  margin: 0 auto;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.oeom-pub-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #21191b;
}
.oeom-pub-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #651b2c, #862b42);
  font-family: Georgia, serif;
  font-weight: 700;
}
.oeom-pub-brand-text {
  display: grid;
  line-height: 1.05;
}
.oeom-pub-brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.oeom-pub-brand-text small {
  color: #665b5f;
  font-size: 0.68rem;
}
.oeom-pub-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.oeom-pub-link {
  text-decoration: none;
  color: #21191b;
  font-weight: 650;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
}
.oeom-pub-link:hover,
.oeom-pub-link:focus {
  background: #f7e9ec;
  outline: 2px solid #651b2c;
  outline-offset: 2px;
}
.oeom-pub-link.is-active {
  background: #f7e9ec;
  color: #651b2c;
}
.oeom-pub-link-util {
  background: #651b2c;
  color: #fff !important;
  margin-left: 6px;
}
.oeom-pub-link-util:hover,
.oeom-pub-link-util:focus {
  background: #862b42;
  color: #fff !important;
}
.oeom-pub-menu {
  display: none;
  border: 1px solid #e8d9dd;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 860px) {
  .oeom-pub-header-inner {
    grid-template-columns: 1fr auto;
  }
  .oeom-pub-menu {
    display: inline-flex;
  }
  .oeom-pub-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }
  .oeom-pub-nav.is-open {
    display: flex;
  }
  .oeom-pub-link-util {
    margin-left: 0;
    text-align: center;
  }
}
