.custom-block-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.custom-block-wrapper .image-container {
  flex: 0 0 35%;
  max-width: 35%;
  text-align: center;
}

.custom-block-wrapper .image-container img {
  width: 75%;
  max-width: 100%;
  height: auto;
}

.custom-block-wrapper .text-container {
  flex: 0 0 65%;
  max-width: 65%;
  padding-left: 20px;
}

/* Druhý blok - obrázok napravo, text vľavo */
.custom-block-wrapper.reverse {
  flex-direction: row-reverse;
}

.custom-block-wrapper.reverse .text-container {
  padding-left: 0;
  padding-right: 20px;
}

/* Responsívne pre mobily - pod sebou */
@media (max-width: 767px) {
  .custom-block-wrapper,
  .custom-block-wrapper.reverse {
    flex-direction: column !important;
  }

  .custom-block-wrapper .image-container,
  .custom-block-wrapper .text-container {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
  }

  .custom-block-wrapper .image-container img {
    width: 100%;
    max-width: 300px; /* alebo iná vhodná max šírka */
    margin: 0 auto 15px auto;
    display: block;
  }
}

@media (max-width: 767px) {
    .custom-block-wrapper .text-container {
      text-align: center;
    }
  
    .custom-block-wrapper .text-container h2 {
      font-size: 22px;
    }
  }

  /* Úvodný blok - všeobecný štýl */
.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .intro-wrapper .main-heading {
    font-weight: 600;
    font-size: 26px;
    text-align: left;
    margin-bottom: 20px;
  }
  
  /* Video obal pre zaručenie responzivity */
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 20px 0;
  }
  
  .video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    left: 0;
    top: 0;
  }
  
  /* Mobilné úpravy */
  @media (max-width: 767px) {
    .intro-wrapper {
      text-align: center;
    }
  
    .intro-wrapper .main-heading {
      font-size: 22px;
      text-align: center;
    }
  }
  