.industry-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 3.5rem;
  background: #07111f;
}

.industry-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.industry-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.industry-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88) 8%, rgba(7, 17, 31, 0.55) 55%, rgba(7, 17, 31, 0.35) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.35) 0%, rgba(7, 17, 31, 0.78) 100%);
}

.industry-hero .eyebrow { color: #9ad9f5; }
.industry-hero h1 { max-width: 18ch; }
.industry-hero .wrap { width: min(100% - 2.5rem, 1140px); margin-inline: auto; }

.industry-visual-strip {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.75rem;
}

.industry-visual-strip figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d1a2a;
  position: relative;
  min-height: 180px;
}

.industry-visual-strip figure:first-child { min-height: 280px; grid-row: span 2; }

.industry-visual-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.industry-visual-strip figure:hover img { transform: scale(1.04); }

.industry-visual-strip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(7, 17, 31, 0.85));
}

.industry-gallery {
  margin-top: 2rem;
}

.industry-gallery h2 { margin-bottom: 0.85rem; }

.industry-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.industry-gallery-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.industry-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.industry-gallery-grid figcaption {
  padding: 0.7rem 0.85rem;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

.side-cta .side-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.15);
}

.product-card.industry-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.product-card.industry-card .card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d1a2a;
}

.product-card.industry-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card.industry-card:hover .card-media img { transform: scale(1.05); }

.product-card.industry-card .card-body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-card.industry-card .actions { margin-top: auto; }

.hub-hero.industry-hero {
  min-height: clamp(360px, 48vh, 480px);
}

@media (max-width: 900px) {
  .industry-visual-strip {
    grid-template-columns: 1fr;
  }
  .industry-visual-strip figure:first-child {
    grid-row: auto;
    min-height: 220px;
  }
  .industry-gallery-grid { grid-template-columns: 1fr; }
  .industry-hero { align-items: center; padding-top: 4.5rem; }
  .industry-hero h1 { max-width: none; }
}
