/**
 * Bridge3 — Shared page hero band (.cases-hero).
 * Used by default page.php, Cases, Composer, and Gutenberg patterns.
 */

.cases-hero {
  position: relative;
  isolation: isolate;
  background: var(--grad-bridge3);
  color: var(--c-on-dark);
  text-align: center;
  overflow: hidden;
  padding-top: clamp(7rem, 5rem + 8vw, 10rem);
  padding-bottom: clamp(3rem, 2rem + 3vw, 4rem);
}
.cases-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/textura.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
}
.cases-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  max-width: 54rem;
  margin-inline: auto;
  padding-top: clamp(2rem, 1rem + 4vw, 4rem);
}
.cases-hero__title {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: clamp(2.25rem, 1.4rem + 3.6vw, 3.5rem);
  line-height: 1.3;
  color: var(--CInza-50, #f3f3f3);
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  margin: 0;
}
.cases-hero__subtitle {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.4;
  color: rgba(243, 243, 243, 0.92);
  max-width: 40rem;
}
