.video-row-1,
.video-row-2,
video.video-row-1,
video.video-row-2 {
  max-width: none !important;
  max-height: none !important;
  width: auto !important;
  height: auto !important;
  box-sizing: border-box !important;
}

.indicator-videos-img {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.video-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  gap: 16px;
  box-sizing: border-box;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  box-sizing: border-box;
}

video.video-row-1 {
  width: 420px !important;   
  height: 350px !important;  
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
}

video.video-row-2 {
  width: 680px !important;   
  height: 350px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
}

.video-wrapper > video {
  display: block;
}

.video-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: white;
  font-size: 16px;
  line-height: 1.4;
  padding: 10px;
}

@media (max-width: 820px) {
  .video-row {
    flex-direction: column;
    gap: 12px;
  }

  video.video-row-1,
  video.video-row-2 {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    aspect-ratio: auto !important;
  }

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

@media screen and (min-width: 1920px) {
  .video-row {
    display: flex;
    justify-content: center;
    width: 1620px;
    gap: 16px;
    box-sizing: border-box;
    margin: 0 auto;
    flex-direction: row;
  }

  video.video-row-1 {
    width: 612px !important;
    height: 520px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }

  video.video-row-2 {
    width: 992px !important;
    height: 520px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }
}