/* ==========================================================================
   HERO BAND v5 — Dense 19-col mosaic (gap:0, continuous mural)
   Dependencies: none (self-contained)
   Used by: hero-band-v5.php
   ========================================================================== */

.cr-hero-band-v5 {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.18;
  pointer-events: none;
}

.cr-hero-band-v5__row {
  display: grid;
  grid-template-columns: repeat(19, 1fr);
  gap: 0;
  flex: 1;
}

.cr-hero-band-v5__cell {
  overflow: hidden;
  min-width: 0;
}
.cr-hero-band-v5__cell svg {
  width: 100%; height: 100%; display: block;
}
.cr-hero-band-v5__cell--photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Text stays above */
.cr-hero-team--with-band .cr-hero-team__inner { z-index: 3; }
.cr-hero-team--with-band .cr-hero-team__wave { z-index: 2; }

@media (max-width: 1200px) {
  .cr-hero-band-v5__row { grid-template-columns: repeat(13, 1fr); }
  .cr-hero-band-v5__cell:nth-child(n+14) { display: none; }
}
@media (max-width: 768px) {
  .cr-hero-band-v5__row { grid-template-columns: repeat(9, 1fr); }
  .cr-hero-band-v5__cell:nth-child(n+10) { display: none; }
  .cr-hero-band-v5 { opacity: 0.14; }
}
@media (max-width: 480px) {
  .cr-hero-band-v5__row { grid-template-columns: repeat(5, 1fr); }
  .cr-hero-band-v5__cell:nth-child(n+6) { display: none; }
  .cr-hero-band-v5 { opacity: 0.1; }
}
