/* Sdílený hero pruh podstránek (kontakt, ceník) — overlay jako .hero-overlay na úvodní stránce */

.page-subpage-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: clamp(280px, 42vw, 420px);
  overflow: hidden;
}

.page-subpage-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgb(5, 5, 8);
  background-size: cover;
  background-position: center;
}

.page-subpage-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.45) 0%,
    rgba(5, 5, 8, 0.82) 55%,
    rgba(5, 5, 8, 0.92) 100%
  );
}

.page-subpage-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) 1rem clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.page-subpage-hero .page-subpage-hero__title.section-title {
  color: #f8f8fa;
  margin-bottom: 1rem;
}

.page-subpage-hero .page-subpage-hero__lead.section-subtitle {
  color: rgba(255, 255, 255, 0.88);
  opacity: 1;
  margin-top: 0;
  margin-bottom: 0;
}
