.hibovb-shell {
  display: block !important;
  flex: 0 0 100% !important;
  grid-column: 1 / -1 !important;
  align-self: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 0 36px !important;
  clear: both;
}

.hibovb-shell__inner {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.hibovb-shell__inner--boxed {
  width: calc(100% - 30px) !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.hibovb,
.hibovb * {
  box-sizing: border-box;
}

.hibovb {
  display: block;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: var(--hibovb-padding) clamp(18px, 3vw, 46px);
  overflow: hidden;
  color: var(--hibovb-title-color);
  background:
    radial-gradient(
      circle at 50% 58%,
      rgba(46, 170, 37, 0.10),
      transparent 38%
    ),
    var(--hibovb-background);
}

/*
 * This is the important fix:
 * all content lives in one fixed, centered frame.
 * Browser zoom can make the viewport wider, but this frame never stretches.
 */
.hibovb__frame {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.hibovb__header {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.hibovb__eyebrow {
  margin: 0 0 4px;
  color: var(--hibovb-accent);
  font-size: clamp(16px, 1.3vw, 21px);
  font-style: italic;
}

.hibovb__title {
  margin: 0;
  color: var(--hibovb-title-color);
  font-size: clamp(27px, 2.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

/*
 * Fixed desktop tracks instead of 1fr columns.
 * Left/right columns can no longer run toward the screen edges.
 */
.hibovb__layout {
  display: grid;
  grid-template-columns: 300px 360px 300px;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  width: 100%;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.hibovb__column {
  display: grid;
  gap: 38px;
  width: 300px;
  min-width: 0;
  max-width: 300px;
}

.hibovb__item {
  display: grid;
  gap: 16px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.hibovb__item--left {
  grid-template-columns: 64px minmax(0, 1fr);
}

.hibovb__item--right {
  grid-template-columns: minmax(0, 1fr) 64px;
  text-align: right;
}

.hibovb__icon {
  display: grid;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  color: #ffffff;
  background: var(--hibovb-accent);
  box-shadow: 0 12px 28px rgba(46, 170, 37, 0.18);
  place-items: center;
  font-size: 28px;
}

.hibovb__icon img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
}

.hibovb__item-title {
  margin: 0 0 9px;
  color: var(--hibovb-title-color);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.22;
}

.hibovb__item-description {
  margin: 0;
  color: var(--hibovb-text-color);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hibovb__center {
  display: grid;
  width: min(100%, var(--hibovb-center-size));
  max-width: 360px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  place-items: center;
}

.hibovb__center-frame {
  width: 100%;
  height: 100%;
  padding: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
}

.hibovb__center-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Compact desktop and tablet. */
@media (max-width: 1199px) {
  .hibovb__frame {
    max-width: 940px;
  }

  .hibovb__layout {
    grid-template-columns:
      minmax(220px, 1fr)
      minmax(250px, 300px)
      minmax(220px, 1fr);
    column-gap: 28px;
    max-width: 940px;
  }

  .hibovb__column {
    width: 100%;
    max-width: none;
    gap: 30px;
  }

  .hibovb__item--left {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hibovb__item--right {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .hibovb__icon {
    width: 58px;
    height: 58px;
  }

  .hibovb__center {
    max-width: 300px;
  }
}

/* Tablet: image above, benefits in two equal columns. */
@media (max-width: 991px) {
  .hibovb__frame {
    max-width: 760px;
  }

  .hibovb__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    max-width: 760px;
    align-items: start;
  }

  .hibovb__center {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(68vw, 320px);
  }

  .hibovb__column:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .hibovb__column:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .hibovb__item--right {
    grid-template-columns: 58px minmax(0, 1fr);
    text-align: left;
  }

  .hibovb__item--right > div:first-child {
    grid-column: 2;
  }

  .hibovb__item--right .hibovb__icon {
    grid-column: 1;
    grid-row: 1;
  }
}

/* Mobile: one normal vertical flow. */
@media (max-width: 767px) {
  .hibovb {
    padding:
      max(36px, calc(var(--hibovb-padding) * 0.7))
      18px;
  }

  .hibovb__header {
    margin-bottom: 34px;
  }

  .hibovb__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    max-width: 560px;
  }

  .hibovb__center,
  .hibovb__column:first-child,
  .hibovb__column:last-child {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
  }

  .hibovb__center {
    grid-row: 1;
    width: min(78vw, 300px);
  }

  .hibovb__column:first-child {
    grid-row: 2;
  }

  .hibovb__column:last-child {
    grid-row: 3;
  }

  .hibovb__item--left,
  .hibovb__item--right {
    grid-template-columns: 56px minmax(0, 1fr);
    text-align: left;
  }

  .hibovb__item--right > div:first-child {
    grid-column: 2;
  }

  .hibovb__item--right .hibovb__icon {
    grid-column: 1;
    grid-row: 1;
  }

  .hibovb__icon {
    width: 56px;
    height: 56px;
  }
}
