.seo-primary-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(13, 18, 19, .97);
  color: #fff;
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
}

.seo-primary-nav *,
.seo-primary-nav *::before,
.seo-primary-nav *::after {
  box-sizing: border-box;
}

.seo-primary-nav__inner {
  width: min(100% - 32px, 1180px);
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.seo-primary-nav__brand {
  flex: 0 0 auto;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.seo-primary-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.seo-primary-nav__links a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.seo-primary-nav__links a:hover,
.seo-primary-nav__links a:focus-visible {
  color: #ffd43b;
}

.seo-primary-nav__links .seo-primary-nav__cta {
  min-height: 40px;
  padding: 10px 15px;
  background: #087a48;
  color: #fff;
}

.seo-primary-nav__mobile {
  display: none;
  position: relative;
}

.seo-primary-nav__mobile summary {
  min-width: 64px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .48);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  text-align: center;
}

.seo-primary-nav__mobile summary::-webkit-details-marker {
  display: none;
}

.seo-primary-nav__mobile-links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(82vw, 290px);
  padding: 8px;
  border: 1px solid #d8dfe0;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.seo-primary-nav__mobile-links a {
  display: block;
  padding: 12px 10px;
  border-bottom: 1px solid #e8ecec;
  color: #161b1d;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.seo-primary-nav__mobile-links a:last-child {
  border-bottom: 0;
  background: #087a48;
  color: #fff;
  text-align: center;
}

@media (max-width: 960px) {
  .seo-primary-nav__inner {
    min-height: 58px;
  }

  .seo-primary-nav__links {
    display: none;
  }

  .seo-primary-nav__mobile {
    display: block;
  }
}
