.simple-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.simple-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.simple-banner__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.simple-banner__bg--mobile {
  display: none;
}

.simple-banner__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 340px;
  padding-block: 40px;
  padding-inline: 20px;
  box-sizing: border-box;
}

.simple-banner__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.simple-banner__title {
  margin: 0;
  margin-block-end: var(--sb-t-mb, 12px);
  font-size: var(--sb-t-fs, 32px);
  font-weight: var(--sb-t-fw, 700);
  color: rgb(var(--color-text));
  text-align: center;
  word-break: break-word;
  line-height: 1.3;
}

.simple-banner__title.rte :is(p, li, span, a, div, blockquote) {
  font-size: inherit !important;
  font-weight: inherit !important;
}

.simple-banner__title.rte :is(strong, b) {
  font-weight: bolder;
}

.simple-banner__subtitle {
  margin: 0;
  font-size: var(--sb-s-fs, 18px);
  font-weight: var(--sb-s-fw, 400);
  color: rgb(var(--color-text));
  text-align: center;
  word-break: break-word;
  line-height: 1.45;
  opacity: 0.95;
}

.simple-banner__subtitle.rte :is(p, li, span, a, div, blockquote) {
  font-size: inherit !important;
  font-weight: inherit !important;
}

.simple-banner__subtitle.rte :is(strong, b) {
  font-weight: bolder;
}

@media (max-width: 991px) {
  .simple-banner__overlay {
    min-height: 232px;
    padding-block: 28px;
    padding-inline: var(--main-padding, 16px);
  }

  .simple-banner__bg--has-mobile {
    display: none;
  }

  .simple-banner__bg--mobile {
    display: block;
  }

  .simple-banner__title {
    font-size: var(--sb-t-mfs, 24px);
    font-weight: var(--sb-t-mfw, 700);
    margin-block-end: var(--sb-t-mmb, 8px);
  }

  .simple-banner__subtitle {
    font-size: var(--sb-s-mfs, 16px);
    font-weight: var(--sb-s-mfw, 400);
  }
}
