/* acf-blocks/cbf-hero.php */

.cbf-hero {
  position: relative;
  margin-bottom: 20px;
}

.cbf-hero__image {
  display: flex;
  height: 340px;
}

.cbf-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cbf-hero__image__mobile + .cbf-hero__image__desktop {
  display: none;
}

@media (min-width: 1024px) {
  .cbf-hero__image {
    height: 660px;
  }

  .cbf-hero__image__mobile {
    display: none;
  }

  .cbf-hero__image__mobile + .cbf-hero__image__desktop {
    display: block;
  }
}

.cbf-hero__logo {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}

.cbf-hero__logo__image {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .cbf-hero__logo__image {
    max-width: 750px;
  }
}

.cbf-hero__badge {
  position: absolute;
  top: 20px;
  left: 14px;
  width: 130px;
}

@media (min-width: 1024px) {
  .cbf-hero__badge {
    top: 60px;
    left: calc(50% - (1250px / 2));
    width: 240px;
  }
}
