:root{
  --atlas-header-paper:#fffdf7;
  --atlas-header-ink:#18140f;
  --atlas-header-muted:#6d655a;
  --atlas-header-line:#d3c5b0;
  --atlas-header-gold:#9c6a28;
  --atlas-header-shadow:0 12px 35px rgba(44,33,19,.10);
  --atlas-header-serif:Georgia,"Times New Roman","Noto Serif KR",serif;
  --atlas-header-sans:Arial,"Noto Sans KR","Noto Sans",sans-serif;
}
.atlas-global-header,
.atlas-global-header *{box-sizing:border-box}
.atlas-global-header{
  position:sticky;
  top:0;
  z-index:100000;
  width:100%;
  background:rgba(255,253,247,.98);
  border-bottom:1px solid var(--atlas-header-line);
  color:var(--atlas-header-ink);
  font-family:var(--atlas-header-sans);
  box-shadow:none;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.atlas-global-header-inner{
  max-width:1500px;
  min-height:84px;
  margin:0 auto;
  padding:12px 26px;
  display:flex;
  align-items:center;
  gap:18px;
}
.atlas-global-brand{
  flex:0 0 auto;
  margin-right:auto;
  color:var(--atlas-header-ink)!important;
  text-decoration:none!important;
}
.atlas-global-brand b{
  display:block;
  margin:0;
  color:var(--atlas-header-ink)!important;
  font:700 23px/1.1 var(--atlas-header-serif)!important;
  letter-spacing:-.035em;
  white-space:nowrap;
}
.atlas-global-brand small{
  display:block;
  margin-top:5px;
  color:var(--atlas-header-gold)!important;
  font:10px/1 var(--atlas-header-sans)!important;
  letter-spacing:.20em;
  text-transform:uppercase;
  white-space:nowrap;
}
.atlas-global-nav{
  display:flex;
  align-items:center;
  gap:18px;
  margin:0;
  padding:0;
}
.atlas-global-nav a{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  color:var(--atlas-header-muted)!important;
  font:13px/1 var(--atlas-header-sans)!important;
  letter-spacing:0!important;
  text-decoration:none!important;
  white-space:nowrap;
}
.atlas-global-nav a:hover,
.atlas-global-nav a.active{
  color:var(--atlas-header-gold)!important;
}
.atlas-global-language{
  flex:0 0 auto;
  min-width:42px;
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0!important;
  padding:0 12px!important;
  border:1px solid #cdbb9e!important;
  border-radius:999px!important;
  background:var(--atlas-header-paper)!important;
  color:#6d5432!important;
  font:700 12px/1 var(--atlas-header-sans)!important;
  text-decoration:none!important;
  box-shadow:none!important;
}
.atlas-global-language:hover{
  border-color:var(--atlas-header-gold)!important;
  background:var(--atlas-header-gold)!important;
  color:#fff!important;
}
.atlas-global-menu-button{
  display:none;
  width:42px;
  height:38px;
  align-items:center;
  justify-content:center;
  border:1px solid var(--atlas-header-line);
  border-radius:999px;
  background:var(--atlas-header-paper);
  color:var(--atlas-header-ink);
  font:18px/1 var(--atlas-header-sans);
  cursor:pointer;
}
.atlas-global-menu-button span{
  display:block;
  width:16px;
  height:1px;
  margin:3px 0;
  background:currentColor;
}
html.atlas-global-managed body > header:not(.atlas-global-header),
html.atlas-global-managed body > .topbar,
html.atlas-global-managed body > .top,
html.atlas-global-managed body > .site-header,
html.atlas-global-managed body > .global-header,
html.atlas-global-managed body > .atlas-unified-header{
  display:none!important;
}
@media(max-width:1050px){
  .atlas-global-header-inner{min-height:72px;padding:10px 14px}
  .atlas-global-menu-button{display:inline-flex;flex-direction:column}
  .atlas-global-nav{
    display:none;
    position:absolute;
    left:12px;
    right:12px;
    top:calc(100% + 1px);
    padding:13px;
    border:1px solid var(--atlas-header-line);
    border-radius:13px;
    background:var(--atlas-header-paper);
    box-shadow:var(--atlas-header-shadow);
    flex-wrap:wrap;
    gap:5px 16px;
  }
  .atlas-global-header.menu-open .atlas-global-nav{display:flex}
  .atlas-global-nav a{min-height:34px}
}
@media(max-width:560px){
  .atlas-global-brand b{font-size:19px!important}
  .atlas-global-brand small{font-size:8px!important;letter-spacing:.15em}
  .atlas-global-header-inner{gap:9px}
  .atlas-global-language{min-width:39px;padding:0 10px!important}
}