.pic-text-3-section .section-container-half,
.pic-text-3-section .pic-content {
  display: flex;
  align-items: center;
}
.pic-text-3-section .pic-content {
  width: 50%;
}
.pic-text-3-section .pic-content .image-wrapper,
.pic-text-3-section .pic-content .video-wrapper {
  flex: 1;
  height: 100%;
  border-radius: var(--section-card-radius);
  overflow: hidden;
}
.pic-text-3-section .pic-content img,
.pic-text-3-section .pic-content video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pic-text-3-section.left_image .section-container-half {
  flex-direction: row-reverse;
}
.pic-text-3-section.right_image .section-container-half {
  flex-direction: row;
}

@media (max-width: 992px) {
  .pic-text-3-section .section-container-half {
    row-gap: var(--grid-gap-large);
  }
  .pic-text-3-section.left_image .section-container-half {
    flex-direction: column-reverse;
  }
  .pic-text-3-section.right_image .section-container-half {
    flex-direction: column;
  }
  .pic-text-3-section .pic-content {
    width: 100%;
  }
}
