.banner-image-left {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
}

.banner-image-left__image {
  flex: 1 1 50%;
  min-width: 0;
  min-height: 587px;
}

.banner-image-left__image > img {
  display: block;
  height: 100%;
  min-height: 587px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-image-left__container {
  position: relative;

  display: flex;
  flex: 1 1 50%;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;

  & > img {
    position: absolute;
    inset: 0;
    z-index: -1;

    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.banner-image-left__header {
  color: #ffffff;
}

.banner-image-left__body {
  margin-top: 32px;
  color: #ffffff;
}

.banner-image-left__links {
  display: flex;
  margin-top: 70px;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 7px 14px;
}

.banner-image-left-social {
  display: inline-flex;
  padding: 7px 20px 7px 10px;
  align-items: center;
  gap: 14px;
  border-radius: 100px;
  background: #ffffff;

  color: #5a5b6c;
  text-decoration: none;
}

/* Планшет в ряд: только когда хватает ширины; иначе колонка 412px + текст даёт обрезку (см. ~621px). */
@media (max-width: 1200px) and (min-width: 961px) {
  .banner-image-left__image {
    flex: 0 0 412px;
    width: 412px;
    max-width: 412px;
  }

  .banner-image-left__container {
    flex: 1 1 auto;
    padding: 60px 45px;
  }
}

/* Узкий экран и портрет планшета: блоки друг под другом (макет 6272 / 6448). */
@media (max-width: 960px) {
  .banner-image-left {
    flex-direction: column-reverse;
  }

  .banner-image-left .title.title--2 {
    font-size: 36px;
    line-height: 44px;
  }

  .banner-image-left__image {
    flex: none;
    width: 100%;
    height: 438px;
    min-height: 0;
  }

  .banner-image-left__image > img {
    min-height: 0;
  }

  .banner-image-left__container {
    padding: 60px 20px;
  }

  .banner-image-left__body {
    margin-top: 20px;
  }

  .banner-image-left__links {
    margin-top: 35px;
  }
}
