.industryVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  filter: sepia(.12) saturate(.78) contrast(.94) brightness(.88);
  transition: transform 6s cubic-bezier(.2, .7, .2, 1);
}

.industryPanel.active .industryVideo {
  transform: scale(1);
}

.industryPanel.active {
  flex: 6.5;
}

.industryPanel.active .industrySummary small {
  display: block;
  max-width: 85%;
  margin-bottom: 14px;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.industryArt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(190, 160, 122, .1);
  mix-blend-mode: color;
}

.government {
  --industry-bg: #76614d;
  --industry-ink: #fff4e1;
}

.media {
  --industry-bg: #2d2221;
  --industry-ink: #fff0df;
}

.b2b {
  --industry-bg: #314048;
  --industry-ink: #f5eadb;
}

.d2c {
  --industry-bg: #8a5f49;
  --industry-ink: #fff2df;
}

.pharma {
  --industry-bg: #5f746f;
  --industry-ink: #f8f0df;
}

.industryProgress i {
  width: 10%;
}

@media (max-width: 1100px) {
  .industryDeck {
    height: auto;
    display: grid;
    gap: 8px;
  }

  .industryPanel {
    height: 120px;
  }

  .industryPanel.active {
    height: 650px;
  }

  .industrySummary small {
    writing-mode: initial;
    transform: none;
    position: static;
  }

  .industryPanel:not(.active) .industrySummary h3 {
    max-width: 82%;
    margin-top: 10px;
    font-size: 27px;
    opacity: 1;
    transform: none;
  }

  .industryPanel.active .industrySummary {
    bottom: 250px;
  }

  .industryDetail {
    height: 190px;
    grid-template-columns: 1fr 1fr;
  }

  .industryDetail > a {
    grid-column: 1 / 3;
  }

  .industryFoot {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industryVideo {
    transition: none;
  }
}
