/*
 * LXD Value Props section (homepage, right after hero)
 * Matches LuxuriousDwelling brand: gold accent + Cormorant headings + Raleway body.
 */

.lxd-value-props {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  --lxd-vp-accent: var(--e-global-color-accent, #CDA355);
  --lxd-vp-text: rgba(20, 33, 61, 0.62);
  --lxd-vp-heading: var(--e-global-color-secondary, #14213D);
  --lxd-vp-divider: rgba(20, 33, 61, 0.16);

  background: #ffffff;
  padding: 56px 0;
}

.lxd-value-props__inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}


.lxd-value-props__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.lxd-value-props__item {
  position: relative;
  text-align: center;
  padding: 10px 34px;
}

.lxd-value-props__item + .lxd-value-props__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--lxd-vp-divider) 18%,
    var(--lxd-vp-divider) 82%,
    transparent
  );
}

.lxd-value-props__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  color: var(--lxd-vp-accent);
}

.lxd-value-props__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lxd-value-props__icon i {
  display: inline-block;
  font-size: 34px;
  line-height: 1;
}

.lxd-value-props__title {
  margin: 0;
  color: var(--lxd-vp-heading);
  font-family: var(--e-global-typography-primary-font-family, "Cormorant Garamond");
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.lxd-value-props__desc {
  margin: 14px auto 0;
  max-width: 30ch;
  color: var(--lxd-vp-text);
  font-family: var(--e-global-typography-text-font-family, "Raleway");
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .lxd-value-props {
    padding: 46px 0;
  }

  .lxd-value-props__item {
    padding: 10px 22px;
  }

  .lxd-value-props__desc {
    max-width: 34ch;
  }
}

@media (max-width: 767px) {
  .lxd-value-props {
    padding: 34px 0;
  }

  .lxd-value-props__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lxd-value-props__item {
    padding: 14px 16px;
  }

  .lxd-value-props__item + .lxd-value-props__item::before {
    display: none;
  }

  .lxd-value-props__desc {
    max-width: 44ch;
  }
}
