/* ========================================= */
/* 사이트 전체 공통 상단바 */
/* 모든 페이지에서 같이 사용하는 영역 */
/* ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;

  width: 100%;
  height: 52px;
  padding: 0 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(232, 221, 198, 0.88);
  backdrop-filter: blur(8px);

  border-bottom: 1px dashed rgba(37, 37, 27, 0.55);
}


/* 사이트 이름 */

.site-logo {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.12em;
}


/* 상단 메뉴 */

.site-nav {
  display: flex;
  gap: 12px;

  font-size: 11px;
  letter-spacing: 0.12em;
}