/* ==========================================================================
   Value props ("Remodeling Shouldn't Feel Like a Gamble")
   ========================================================================== */

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-prop {
  text-align: center;
  padding-inline: var(--space-md);
  position: relative;
}

.value-prop::before {
  content: "";
  position: absolute;
  left: calc(var(--space-xl) / -2);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.value-prop:first-child::before {
  display: none;
}

.value-prop__title {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  color: var(--color-navy-800);
  margin-bottom: var(--space-sm);
}

.value-prop__text {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

@media (max-width: 1024px) {
  .value-props {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-xl);
  }

  .value-prop:nth-child(2)::before {
    display: block;
  }
}

@media (max-width: 720px) {
  .value-props {
    grid-template-columns: 1fr;
  }
}
