.php-sol-section {
  position: relative;
  display: flex;
  align-items: center;
  padding: 67px 109px;
  width: 100%;
  box-sizing: border-box;
  min-height: 544px;
  background-color: #e15520;
}

.php-sol-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
}

.php-sol-bg-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  display: none;
}

/* ── Two-column layout ── */
.php-sol-columns {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}

/* Left column: empty — shows bg image through */
.php-sol-left {
  flex: 1 0 0;
  min-width: 0;
}

/* Right column: text */
.php-sol-right {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.php-sol-text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.php-sol-eyebrow {
  margin: 0;
  font-family: 'Rockwell', 'Rockwell Nova', Georgia, serif;
  font-weight: 700;
  font-size: 35px;
  line-height: normal;
  color: #ffffff;
}

.php-sol-heading {
  margin: 0;
  font-family: 'Rockwell', 'Rockwell Nova', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #ffffff;
}

.php-sol-body {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}

/* ── Bullets ── */
.php-sol-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.php-sol-bullet {
  display: flex;
  gap: 9px;
  align-items: center;
}

.php-sol-bullet-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.php-sol-bullet-text {
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}

/* ── CTA button ── */
.php-sol-cta {
  display: inline-block;
  align-self: flex-start;
  background-color: #112444;
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 33px;
  white-space: nowrap;
}

/* ════════════════════════════════
   Tablet  ≤ 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .php-sol-section {
    padding: 56px 48px;
  }

  /* Shrink left column so text gets more room */
  .php-sol-left {
    flex: 0 0 0%;
  }

  .php-sol-right {
    flex: 0 0 100%;
  }

  .php-sol-eyebrow {
    font-size: 28px;
  }

  .php-sol-heading {
    font-size: 20px;
  }

  .php-sol-body,
  .php-sol-bullet-text {
    font-size: 17px;
  }
}

/* ════════════════════════════════
   Mobile  ≤ 767px
════════════════════════════════ */
@media (max-width: 767px) {
  .php-sol-section {
    padding: 56px 20px;
    align-items: center;

  }

  .php-sol-bg {
    display: none;
  }

  .php-sol-bg-mobile {
    display: block;
  }

  .php-sol-columns {
    flex-direction: column;
    gap: 0;
  }

  .php-sol-left {
    display: none;
  }

  .php-sol-right {
    flex: none;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    background-color: transparent;
    margin-top: 220px;
  }

  .php-sol-eyebrow {
    font-size: 26px;
  }

  .php-sol-heading {
    font-size: 18px;
  }

  .php-sol-body,
  .php-sol-bullet-text {
    font-size: 16px;
    line-height: 24px;
  }

  .php-sol-cta {
    align-self: stretch;
    text-align: center;
    text-wrap: wrap;
    line-height: 1.4;
    padding: 17px 20px;
    font-size: 13px;
  }
}

