/* custom.css — small visual tweaks for this specific site.
   Loads AFTER main.css, so anything here wins. The AI content engine may add
   rules here when params can't express a change. Keep it short; prefer params. */

/* The header has no logo setting, so pair the supplied mark with the brand name. */
.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.brand::before {
  content: "";
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  background: url("/uploads/logo-1.png") center / contain no-repeat;
}
