/* 전 지역 공통 상단 훅 브랜드 마크 */
.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #fff;
  white-space: nowrap;
}

.site-header .brand-mark.hook-brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow: none;
}

.site-header .brand-mark.hook-brand-mark img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-header .brand-copy,
.site-header .brand-copy strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -.045em;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .site-header .brand { gap: 9px; }

  .site-header .brand-mark.hook-brand-mark,
  .site-header .brand-mark.hook-brand-mark img {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .site-header .brand-copy,
  .site-header .brand-copy strong {
    max-width: 205px;
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .site-header .brand-copy,
  .site-header .brand-copy strong {
    max-width: 180px;
    font-size: 16px;
  }
}

