/* ===========================
   PROPERTY PAGE SECTION
=========================== */
.property-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 107px !important;
  width: 100%;
}

.properties-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 74px;
  width: 100%;
  margin: 0 160px;
  padding: 80px 0;
}

.properties-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.properties-header p {
  width: 991px;
  max-width: 100%;
  font-size: var(--blurb-size);
  font-weight: 300;
  font-family: var(--font-henry);
  margin: 0 40px;
  text-align: center;
  line-height: 1.6;
}

.property-card a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .properties-wrapper {
    margin: 0 60px;
    padding: 60px 0;
    gap: 60px;
  }

  .properties-header p {
    width: 100%;
    font-size: 18px;
    margin: 0 20px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .property-page-wrapper {
    gap: 60px !important;
  }

  .properties-wrapper {
    margin: 0 20px;
    padding: 40px 0;
    gap: 40px;
  }

  .properties-header h1 {
    font-size: 32px;
  }

  .properties-header p {
    width: 100%;
    font-size: 16px;
    margin: 0 10px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .property-page-wrapper {
    gap: 40px !important;
  }

  .properties-wrapper {
    margin: 0 10px;
    padding: 30px 0;
    gap: 30px;
  }

  .properties-header h1 {
    font-size: 26px;
  }

  .properties-header p {
    font-size: 15px;
    margin: 0;
  }
}
