/* עיצוב ברירת מחדל לווידאו או תמונה */
.responsive-video,
.side-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* עיצוב כאשר הם בתוך media-container */
.image-section .media-container {
  display: flex;
  flex-direction: column; /* מובייל */
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .image-section .media-container {
    flex-direction: row;
    align-items: stretch;
  }

  .image-section .media-container .responsive-video,
  .image-section .media-container .side-image {
    width: 50%;
    height: auto;
  }
}
.padding-20 {
    padding-top: 50px;
}
