/* BLOKY TEXT-OBRÁZEK */
.od-blok {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

/* OBRÁZEK / VIDEO */
.od-obrazek,
.od-video {
  max-width: 360px;
  flex-shrink: 0;
  margin: 0;
}

.od-obrazek img,
.od-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* TEXT */
.od-text {
  max-width: 100%;
  line-height: 1.8;
  text-align: left;
  font-size: 1.75rem;
}

.od-text h2 {
  font-size: 2.9rem;
  margin-bottom: 1.7rem;
  color: #000;
}

.od-text p {
  margin-bottom: 1.2rem;
}

.od-text ul {
  margin-bottom: 1.2rem;
  padding-left: 1.6rem;
}

/* DESKTOP */
@media screen and (min-width: 768px) {
  .od-blok {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .od-blok.otoceny {
    flex-direction: row-reverse;
  }

  .od-obrazek,
  .od-video {
    margin-right: 40px;
  }

  .od-blok.otoceny .od-obrazek,
  .od-blok.otoceny .od-video {
    margin-right: 0;
    margin-left: 40px;
  }
}
/* KONEC BLOKY TEXT-OBRÁZEK */