/* header.css - shared brand styling for the site header/nav */

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-logo-mark {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .site-logo-mark {
    width: 120px;
  }
}
