/* ============================================================
   franchise-hero-covers.css
   Adds cover-image hero treatment to Benji and Savannah Sleuths
   franchise hubs. The HTML uses .bn-hero__cover or .ss-hero__cover
   when a real cover image is present (vs. the gradient placeholder).
   2026-05-27.
   ============================================================ */

.bn-hero__cover,
.ss-hero__cover {
  margin: 0;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  border-radius: var(--tw-radius);
  overflow: hidden;
  border: 1px solid var(--tw-rule);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .14);
}
.bn-hero__cover img,
.ss-hero__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* When cover is present, the hero grid should give it slightly more room */
@media (min-width: 720px) {
  .bn-hero:has(.bn-hero__cover),
  .ss-hero:has(.ss-hero__cover) {
    grid-template-columns: 320px 1fr;
  }
}
