.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
}

.hero::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(42vw, 620px);
  background:
    linear-gradient(90deg, var(--brand-black), rgba(8, 8, 8, 0.12)),
    url("../images/brand/industrial-chain-background.webp") center / cover;
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.product-card > img {
  height: 170px;
  aspect-ratio: auto;
  object-fit: contain;
  background: #111;
}

.strength-grid-industrial {
  gap: 0;
  border: 1px solid var(--brand-border);
}

.strength-card-industrial {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--brand-border);
  border-top: 0;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, transparent 0 74%, rgba(243, 107, 10, 0.12) 74% 75%, transparent 75%),
    #181818;
}

.strength-card-industrial:last-child {
  border-right: 0;
}

.strength-card-industrial::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 4px;
  background: var(--brand-orange);
  content: "";
}

.strength-index {
  margin: 0;
  color: rgba(244, 244, 244, 0.18);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.9;
}

.strength-card-copy {
  position: absolute;
  right: 1.35rem;
  bottom: 1.1rem;
  left: 1.35rem;
}

.strength-card-industrial h3 {
  margin-bottom: 0.65rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.strength-card-industrial p:last-child {
  margin: 0;
}

@media (max-width: 800px) {
  .hero::after {
    width: 100%;
    opacity: 0.32;
  }

  .product-card > img {
    height: 145px;
  }

  .strength-card-industrial {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--brand-border);
  }

  .strength-card-industrial:last-child {
    border-bottom: 0;
  }
}
