/**
 * [mn_hero] — statyczny hero pełnej szerokości (od boku do boku), tekst wyśrodkowany.
 * Wyjście z kontenera na 100vw (full-bleed), więc działa nawet w wąskiej sekcji Breakdance.
 */
.mn-hero-static {
  --mn-hero-static-h: 300px;   /* wysokość banera */
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);      /* full-bleed: od boku do boku */
  min-height: var(--mn-hero-static-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.mn-hero-static__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}
.mn-hero-static__overlay { position: absolute; inset: 0; }
.mn-hero-static__link { position: absolute; inset: 0; z-index: 1; }   /* cały hero klikalny */

.mn-hero-static__inner {
  position: relative;
  z-index: 2;
  pointer-events: none;               /* klik przechodzi do linku */
  max-width: 780px;
  padding: 48px 24px;
  color: #fff;
}
/* wyższa specyficzność niż .breakdance h1, żeby biały wygrał */
.mn-hero-static .mn-hero-static__title {
  margin: 0 0 18px;
  font-family: var(--bde-heading-font-family, 'Lora', Georgia, serif);   /* heading font = Lora */
  font-weight: 400;                   /* jak stara strona — Lora 400 */
  color: #fff;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.1;
}
.mn-hero-static__excerpt {
  margin: 0;
  color: #fff;
  opacity: .92;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.6;
}
