.php-prob-section {
  background-color: #ffffff;
  display: flex;
  gap: 27px;
  align-items: center;
  padding: 51px 109px 58px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Left: text ── */
.php-prob-text {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

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

.php-prob-body p {
  margin: 0 0 15px;
}

.php-prob-body p:last-child {
  margin-bottom: 0;
}

.php-prob-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.php-prob-bullet-icon {
  width: 12px;
  height: 10px;
  flex-shrink: 0;
}

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

/* ── Right: image ── */
.php-prob-image-wrap {
  flex: 1 0 0;
  min-width: 0;
  height: 435px;
  background-color: #ebebeb;
}

.php-prob-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

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

  .php-prob-image-wrap {
    height: 360px;
  }
}

/* ════════════════════════════════
   Mobile  ≤ 767px
════════════════════════════════ */
@media (max-width: 767px) {
  .php-prob-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
  }

  .php-prob-image-wrap {
    width: 100%;
    height: 260px;
  }

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

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

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

