.text-section-four {
    position: relative;
    background-color: #f0ede8;
    min-height: 560px;
    overflow: hidden;
    padding: 80px 0 0;
    font-family: "Proxima Nova Rg", sans-serif;
  }


  .text-section-four__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42%;
    height: 72%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    pointer-events: none;
  }

  /* ─── Left column ───────────────────────────────────────────── */
  .text-section-four__left {
    position: relative;
    z-index: 1;
  }

  .text-section-four__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: #002e45;
    margin: 0;
  }

  /* ─── Right column ──────────────────────────────────────────── */
  .text-section-four__right {
    padding-bottom: 80px;
    color: #383838;
  }

  .text-section-four__lead {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    font-weight: 700;
    line-height: 1.55;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
  }

  .text-section-four__body {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 400;
    line-height: 1.65;
    color: #3a3a3a;
    margin-bottom: 1.25rem;
  }

  .text-section-four__body:last-of-type {
    margin-bottom: 0;
  }

  /* ─── Responsive tweaks ─────────────────────────────────────── */
  @media (max-width: 767.98px) {
    .text-section-four {
      padding-top: 48px;
    }

    .text-section-four__bg {
      position: static;
      width: 100%;
      height: 220px;
      background-position: center bottom;
      margin-top: 32px;
    }

    .text-section-four__right {
      padding-bottom: 0;
    }
  }