/* ==========================================================================
   HERO BAND v6 — Dense vivid (high opacity, saturated colors)
   Based on v5 with: opacity 0.35, vivid hex colors, no glass dimming
   Used by: hero-band-v6.php
   ========================================================================== */

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

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

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

.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-v6__row { grid-template-columns: repeat(13, 1fr); }
  .cr-hero-band-v6__cell:nth-child(n+14) { display: none; }
}
@media (max-width: 768px) {
  .cr-hero-band-v6__row { grid-template-columns: repeat(9, 1fr); }
  .cr-hero-band-v6__cell:nth-child(n+10) { display: none; }
  .cr-hero-band-v6 { opacity: 0.45; }
}
@media (max-width: 480px) {
  .cr-hero-band-v6__row { grid-template-columns: repeat(5, 1fr); }
  .cr-hero-band-v6__cell:nth-child(n+6) { display: none; }
  .cr-hero-band-v6 { opacity: 0.35; }
}
