.video-table {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Jeden „wiersz tabeli” */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

/* Komórki */
.cell {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Tekst */
.cell.text h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cell.text p {
  line-height: 1.6;
  color: #444;
    margin-bottom: 25px;
}

.cell.text ul {
    margin-left: 25px;
    line-height: 1.6em;
}

/* Komórka wideo */
.cell.video {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wrapper wideo */
.video-wrapper {
  width: 80%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sam player */
.video-wrapper video {
  position: static !important;   /* 🔒 ZABIJA absolute */
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
.video-wrapper { outline: 5px solid rgb(77, 74, 74); }


/* Mobile */
@media (max-width: 768px) {

  .row {
    grid-template-columns: 1fr;
  }

  .video-wrapper {
    width: 100%;
  }
}