/**
 * Pool Ready Home - shared "How It Works" numbered process section
 * Used by page-about.php and page-services.php.
 */

.prh-process {
  background: var(--prh-gradient-navy);
  color: var(--prh-on-dark-70);
}

.prh-process .prh-heading {
  color: var(--prh-white);
}

.prh-process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--prh-space-6);
}

.prh-process__grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.prh-process__step {
  position: relative;
  z-index: 1;
  padding-inline: var(--prh-space-3);
  text-align: center;
}

.prh-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--prh-space-4);
  border-radius: var(--prh-radius-circle);
  background: var(--prh-teal);
  color: var(--prh-white);
  font-size: var(--prh-fs-h5);
  font-weight: var(--prh-fw-bold);
}

.prh-process__title {
  margin-bottom: var(--prh-space-2);
  color: var(--prh-white);
  font-size: var(--prh-fs-h5);
}

.prh-process__text {
  margin: 0;
  font-size: var(--prh-fs-sm);
}

@media (max-width: 900px) {
  .prh-process__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--prh-space-10);
  }

  .prh-process__grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .prh-process__grid {
    grid-template-columns: 1fr;
  }
}
