/* Content block with image background (full-bleed, 540px height) */

.vb-content-bg {
  position: relative;
  color: #ffffff;
  background-color: var(--comp-1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  padding-top: 64px;
  padding-bottom: 64px;
  /* Break out of container to full viewport width */
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.vb-content-bg .container {
  position: relative;
  z-index: 1;
}

.vb-content-bg__title {
  font-family: var(--font-display, Archivo, system-ui, sans-serif);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  margin: 0 0 12px 0;
  color: #ffffff;
}

.vb-content-bg__text {
  margin: 0 0 16px 0;
  color: #ffffff;
}

.vb-content-bg.has-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Radial gradient per design */
  background: radial-gradient(65.26% 217.01% at 80.52% 23.09%, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 0.7) 98.56%);
  z-index: 0;
}

.vb-content-bg__cta { display: inline-block; }

/* Text + Image variant */
.vb-content-til {
  padding-top: 80px;
  padding-bottom: 80px;
}

.vb-content-til__title {
  font-family: var(--font-display, Archivo, system-ui, sans-serif);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  margin: 0 0 12px 0;
  color: var(--grey-900, #111);
}

.vb-content-til__text {
  margin: 0 0 16px 0;
  color: var(--grey-800, #2a2a2a);
}

.vb-content-til__cta { display: inline-block; }

.vb-cb-til-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


