/* brak marginesów/paddingu po bokach (pełna szerokość) */
.wrap {
  width: 100%;
  margin: 0;
  padding: 40px 0 70px;
}

.mpura-header-desc {
  max-width: 1200px;
  width: 100%; /* albo np. 80% jeśli wolisz */
  margin: 0 auto; /* wyśrodkowanie poziome */
  display: flex;
  justify-content: center; /* poziomo */
  font-size: 28px;
  font-weight: 700; /* albo: bold */
}

.mpura-header-desc-small {
  max-width: 1200px;
  width: 100%; /* albo np. 80% jeśli wolisz */
  margin: 0 auto; /* wyśrodkowanie poziome */
  display: flex;
  justify-content: left; /* poziomo */
  font-size: 20px;
  font-weight: 700; /* albo: bold */
}

.mpura-faq-frame {
  max-width: 1200px;
  margin: 32px auto;
  padding: 24px;
  border: 2px solid var(--card-border);
  background: var(--bar-bg);
}

.mpura-faq-title {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 6px 0 22px;
  font-size: 28px;
}

.mpura-faq-content {
  max-width: 900px; /* tekst po lewej, jak na grafice */
  padding-left: 18px;
}

.mpura-faq-qa {
  margin: 0 0 18px 0;
}

.mpura-faq-q {
  font-weight: 700;
  margin: 0 0 6px 0;
  font-size: 18px;
}

.mpura-faq-a {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
  /* font-size: 16px; */
}

.mpura-desc-small {
  max-width: 1200px;
  width: 100%; /* albo np. 80% jeśli wolisz */
  margin: 0 auto; /* wyśrodkowanie poziome */
  display: flex;
  justify-content: left; /* poziomo */
  /* font-size: 20px; */
  text-align: left;
  text-align-last: left; /* lub left/right */
  /* font-weight: 700; albo: bold */
}

.mpura-desc {
  max-width: 1200px;
  width: 100%; /* albo np. 80% jeśli wolisz */
  margin: 0 auto; /* wyśrodkowanie poziome */
  margin-top: 50px;
  display: flex;
  /* justify-content: center; poziomo */
  /* font-size: 20px; */
  /* text-align: justify; */
  text-align-last: left; /* lub left/right */
  /* font-weight: 700; albo: bold */
}

/* DESKTOP: układ 2 kolumny */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
}

/* DESKTOP: naprzemiennie */
.alt-list .two-col {
  grid-template-columns: 1fr 1.1fr;
}
.alt-list section:nth-child(even) .media {
  order: 2;
}
.alt-list section:nth-child(even) .content {
  order: 1;
}

/* media */
.media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* mpura DEMO */
.mpura-header {
  margin-top: 0px;
  position: relative;
  /* background: url("/img/mpura_header.png"); */
  /* background-size: cover; */
  background-position: bottom;
  height: 600px;

  display: flex;
  flex-direction: column; /* tytuł nad opisem */
  align-items: center; /* środek w poziomie */
  justify-content: flex-start; /* góra w pionie */
  padding-top: 40px; /* odstęp od góry (zmień jak chcesz) */
  background-color: black;
  text-align: center; /* na wszelki wypadek */
}

/* obrazek tylko na dole, 500px wysokości */
.mpura-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 600px; /* <-- wymagane */
  background: url("/img/mpura_header.png") bottom center no-repeat;
  background-size: auto; /* alternatywnie: bez kadrowania */
  z-index: 0;
}

.mpura-header-text {
  z-index: 2; /* <- nad ::after */
  font-weight: 700;
  font-size: 35px;
  margin: 0;
  color: var(--bar-bg);
  animation: fadeIn 1.2s ease;
}

.mpura-header-text-desc {
  font-size: 20px;
  margin: 10px 0 0;
  color: var(--bar-bg);
  animation: fadeIn 1.2s ease;
  padding-left: 10%;
  padding-right: 10%;
}

/*  WSZYSTKIE OPISY: start od 16px */
.content {
  margin-left: 0; /* usunięcie 10% */
  padding-left: 10%; /* start tekstu 16px */
  padding-right: 10%; /* żeby z prawej też było równo */
}
/* MOBILE: opis NAD obrazkiem */
@media (max-width: 860px) {
  .wrap {
    padding: 24px 0 50px; /* poziomo 0, bo opis i tak ma 16px */
  }

  .two-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 0;
  }

  .two-col .content {
    order: 1;
  }
  .two-col .media {
    order: 2;
  }
}

/* ===== MP4 (z ikoną play/pause) ===== */
.player {
  width: min(900px, 92vw);
  margin: 40px auto 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(244, 244, 244, 1);
  position: relative;
}

.player video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  background: rgba(244, 244, 244, 1);
}

.pause-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.pause-btn:hover {
  background: var(--btn-bg-hover);
}

.pause-btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
}

/* Ikony SVG */
.pause-btn svg {
  width: 18px;
  height: 18px;
  display: none;
  fill: currentColor;
}

.pause-btn[data-state="play"] .icon-play {
  display: block;
}

.pause-btn[data-state="pause"] .icon-pause {
  display: block;
}

.no-bullets {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
