/* ==========================================================================
   Goldusters — per-store overrides.

   Loaded after /shared/store.css, so anything here wins.

   COLORS ARE DELIBERATELY NOT OVERRIDDEN. This store is meant to look the same
   as Nebo, so it inherits the shared palette as-is. The gold and slate in the
   logo carry the brand on their own; a gold accent on top of them made the
   page read as a different site. To rebrand later, override --accent,
   --accent-hot and --accent-wash here — and set the dark-mode block too, or a
   light-only accent goes muddy against the dark surface.

   The one thing that does need correcting is the logo shape.
   ========================================================================== */

/* The shared header sizes the logo as a 52px SQUARE, which suits Nebo's round
   school seal. The Goldusters mark is a wide triangle at roughly 2:1, and
   `object-fit: contain` inside a square box would render it at half height —
   a small smudge next to full-size type. Same 52px of vertical weight as
   Nebo's seal, free to be as wide as it needs. */
.brand-logo {
  width: auto;
  height: 52px;
  max-width: 120px;
}

@media (max-width: 620px) {
  .brand-logo {
    height: 42px;
    max-width: 96px;
  }
}
