.industries-page-hero {
  padding-top: clamp(4.2rem, 6vw, 5.4rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at 100% 0, rgba(160, 221, 255, 0.18), transparent 26%),
    radial-gradient(circle at 0 0, rgba(243, 154, 79, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 249, 253, 0.96));
}

.industries-page-hero .container {
  max-width: 1240px;
}

.industries-page-hero-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 960px;
  align-content: start;
  text-align: left;
}

.industries-page-hero-copy .eyebrow {
  margin-bottom: 0.36rem;
  color: #5ea9b3;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.industries-page-hero .simple-page-title {
  max-width: 100%;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.industries-videos {
  padding-top: clamp(2.25rem, 3.5vw, 2.9rem);
}

.industries-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.industry-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(35, 63, 92, 0.07);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.industry-video-card:hover {
  border-color: rgba(14, 174, 222, 0.18);
  box-shadow: 0 24px 50px rgba(35, 63, 92, 0.12);
  transform: translateY(-2px);
}

.industry-video-hit {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.industry-video-copy {
  display: grid;
  gap: 0.42rem;
  min-height: 148px;
  padding: 1rem 1rem 0.85rem;
}

.industry-video-copy h2 {
  color: #13263a;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.26;
}

.industry-video-copy p {
  margin: 0.52rem 0 0;
  color: #607486;
  font-size: 0.95rem;
  line-height: 1.54;
}

.industry-video-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-top: 1px solid rgba(18, 32, 51, 0.06);
  background: rgba(245, 249, 253, 0.92);
}

.industry-video-media > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.industry-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.industry-video-play > img {
  width: min(84px, 22%);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(35, 63, 92, 0.18));
  transition: transform 0.24s ease;
}

.industry-video-card:hover .industry-video-play img {
  transform: scale(1.05);
}

.industry-video-hit:focus-visible {
  outline: 2px solid rgba(14, 174, 222, 0.3);
  outline-offset: -2px;
}

@media (max-width: 1200px) {
  .industries-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .industry-video-copy {
    min-height: 132px;
  }
}

@media (max-width: 768px) {
  .industries-page-hero {
    padding-top: 3.35rem;
    padding-bottom: 0.75rem;
  }

  .industries-page-hero .container,
  .industries-page-hero-copy,
  .industries-page-hero .simple-page-title {
    max-width: 100%;
  }

  .industries-page-hero .simple-page-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .industries-video-grid {
    grid-template-columns: 1fr;
  }

  .industry-video-card {
    border-radius: 18px;
  }

  .industry-video-copy {
    min-height: auto;
  }
}
