/** Shopify CDN: Minification failed

Line 71:0 Unexpected "}"

**/
.image-banner{
  display: block;
}
.image-banner:hover{
  text-decoration: none;
}
.image-banner__subheading{
  color: var(--color-accent);
}
.image-banner__heading,
.image-banner__description{
  color: var(--color-base);
}
.image-banner__buttons{
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.image-banner__buttons>*{
  margin-top: 10px;
}
.text-center .image-banner__buttons{
  justify-content: center;
}

  .image-banner{
    position: relative;
  }
  .image-banner__content{
    position: absolute;
    display: flex;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
  }
  .image-banner__content--bg{
    padding: 40px;
  }
  .image-banner__content--bg>*{
    position: relative;
    padding: 40px;
  }
  .image-banner__content--bg>*>*{
    position: relative;
  }
  .image-banner__content--bg>*:before{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    background: var(--color-secondary-background);
    opacity: 0.9;
    z-index: 0;
  }
}
