.block-image-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(64px, 9vw, 130px) var(--gutter);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.block-image-banner.height-standard {
  min-height: 52vh;
}
.block-image-banner.height-tall {
  min-height: 78vh;
}
.block-image-banner.accent-terracotta {
  background-color: #C4623A;
}
.block-image-banner.accent-teal {
  background-color: #4E9BA3;
}
.block-image-banner.accent-olive {
  background-color: #516B3E;
}
.block-image-banner.accent-dark {
  background-color: #1c1008;
}
.block-image-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 12, 5, 0.38)), to(rgba(20, 12, 5, 0.58)));
  background: linear-gradient(180deg, rgba(20, 12, 5, 0.38), rgba(20, 12, 5, 0.58));
  pointer-events: none;
}
.block-image-banner:not(.has-image)::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 12, 5, 0.12)), to(rgba(20, 12, 5, 0.28)));
  background: linear-gradient(180deg, rgba(20, 12, 5, 0.12), rgba(20, 12, 5, 0.28));
}
.block-image-banner .ib-inner {
  position: relative;
  z-index: 1;
  max-width: 30ch;
}
.block-image-banner.align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.block-image-banner.align-center .ib-inner {
  max-width: 48rem;
}
.block-image-banner .ib-eyebrow {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(240, 237, 228, 0.85);
  margin: 0 0 18px;
}
.block-image-banner .ib-heading {
  font-family: "Cormorant", "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.3rem, 4.4vw, 3.9rem);
  line-height: 1.02;
  color: var(--cream);
  margin: 0;
}
.block-image-banner .ib-body,
.block-image-banner .ib-body p {
  font-family: "Space Mono", monospace;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  color: rgba(240, 237, 228, 0.92);
  margin: 0;
}
.block-image-banner .ib-body {
  max-width: 34rem;
  margin: 22px 0 0;
}
.block-image-banner.align-center .ib-body {
  margin-left: auto;
  margin-right: auto;
}
.block-image-banner .ib-cta {
  margin-top: 30px;
}

@media (max-width: 860px) {
  .block-image-banner {
    padding: clamp(56px, 12vw, 90px) var(--margin-small);
  }
  .block-image-banner.height-tall {
    min-height: 64vh;
  }
}