.section-hero {
  background-color: #f4f4f4;
}

.section-hero .section-row {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.section-hero .section-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 16px;
}

.section-hero.section-hero-text-right .section-details {
  text-align: right;
}

.section-hero.section-hero-text-center .section-details {
  text-align: center;
}

.section-hero .section-image {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.section-hero .section-image picture {
  width: 100%;
  height: 100%;
}

.section-hero .section-image picture img {
  min-width: 100%;
  min-height: 100%;
  max-width: initial;
}

.section-hero .section-logo {
  margin: 0 0 16px 0;
}

@media screen and (min-width: 768px) {
  .section-hero .section-row {
    flex-direction: row;
  }

  .section-hero.section-hero-details-right .section-row {
    flex-direction: row-reverse;
  }

  .section-hero .section-details {
    width: 33.33%;
    padding: 32px;
  }

  .section-hero .section-image {
    width: 66.67%;
  }

  .section-hero.section-hero-split .section-details,
  .section-hero.section-hero-split .section-image {
    width: 50%;
  }

  .section-hero .section-image picture {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section-hero .section-image picture img {
    object-fit: cover;
  }
}
