﻿/* Dee Editor 데모 — 공통 상단 헤더 */
.site-header {
  background: #1e3a5f;
  color: #fff;
  padding: 0 40px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__brand:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.site-header__brand h1 {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.site-header .site-logo {
  height: 28px;
  display: block;
}

.site-header nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-header nav a {
  color: #a8c4e0;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav a:hover {
  color: #fff;
}

.site-header nav a.active {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-header {
    height: auto;
    min-height: 54px;
    padding: 10px 16px;
    flex-wrap: wrap;
  }

  .site-header nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
}
