.block-property-types {
  background: #1a1108;
  padding: var(--margin-medium) var(--gutter);
}
.block-property-types .property-types-head {
  margin-bottom: var(--margin-medium);
}
.block-property-types .property-types-eyebrow {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.625rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(165, 137, 108, 0.85);
  margin: 0 0 14px;
}
.block-property-types .property-types-heading {
  font-family: "Cormorant", "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1;
  color: var(--cream);
  margin: 0;
}
.block-property-types .property-types-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.block-property-types .property-type-card {
  position: relative;
  background: #150d06;
  padding: 32px 24px 28px;
  min-height: 320px;
}
.block-property-types .property-type-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.block-property-types .property-type-title {
  font-family: "Cormorant", "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.2;
  margin: 0 0 20px;
}
.block-property-types .property-type-body,
.block-property-types .property-type-body p {
  font-family: "Space Mono", monospace;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(239, 238, 228, 0.85);
  margin: 0;
}
.block-property-types .accent-terracotta .property-type-accent {
  background: var(--terracotta);
}
.block-property-types .accent-terracotta .property-type-title {
  color: var(--terracotta);
}
.block-property-types .accent-white .property-type-accent {
  background: #fff;
}
.block-property-types .accent-white .property-type-title {
  color: #fff;
}
.block-property-types .accent-tan .property-type-accent {
  background: #a5896c;
}
.block-property-types .accent-tan .property-type-title {
  color: #a5896c;
}
.block-property-types .accent-teal .property-type-accent {
  background: var(--teal);
}
.block-property-types .accent-teal .property-type-title {
  color: var(--teal);
}
@media (max-width: 1000px) {
  .block-property-types {
    padding: var(--margin-medium) var(--margin-small);
  }
  .block-property-types .property-types-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .block-property-types .property-type-card {
    min-height: 0;
  }
}