/*
* This file has been refactored to use the global variables
* defined in style/main.css.
*
* NOTE: .enterance, .InfoText, .oneCard, .pagination,
* and .contactButtons are duplicated components.
*/

/* ========================================= */
/* Main Elements */
/* ========================================= */



/* ------------------------------------------ */
/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.propertyName {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-font-dark); /* Refactored */
  margin-bottom: 10px;
  line-height: 1.5;
}

.propertyPrice {
  color: var(--color-price-green); /* Refactored */
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}


@media (max-width: 480px) {

  .propertyName {
    font-size: 0.95rem;
  }

  .propertyPrice {
    font-size: 1rem;
  }
}