/* All Properties */

/* Grid Layout */
.vre-properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.vre-properties-grid__link {
  text-decoration: none;
}

.vre-property-card {
  border: 1px solid #ddd;
  background-color: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.vre-property-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vre-property-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.vre-property-card__body {
  padding: 1.5rem 1rem;
}

.vre-property-card__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #333;
}

.vre-property-card__price {
  font-size: 1rem;
  color: #28a745;
  margin: 0 0 8px 0;
}

.vre-property-card__excerpt {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vre-pagination {
  margin-top: 20px;
  text-align: center;
}

.vre-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.vre-pagination li {
  display: inline-block;
  margin: 0 4px;
}

.vre-pagination a,
.vre-pagination span {
  padding: 8px 12px;
  text-decoration: none;
  color: #007bff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.vre-pagination a:hover {
  background-color: #f8f9fa;
}

.vre-pagination .current {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* /All Properties */

/* Single Property */

/* Main Property Container */
.vre-property {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

/* Property Header */
.vre-property__header {
  text-align: center;
  margin-bottom: 20px;
}

.vre-property__image {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.vre-property__title {
  font-size: 2rem;
  color: #333;
  margin: 0;
}

/* Property Details */
.vre-property__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Property Meta */
.vre-property__meta {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.vre-property__price {
  font-size: 1.5rem;
  color: #28a745;
  margin: 0 0 10px 0;
}

.vre-property__method,
.vre-property__address {
  font-size: 1rem;
  color: #666;
  margin: 0 0 5px 0;
}

/* Property Amenities */
.vre-property__amenities {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.vre-property__subtitle {
  font-size: 1.25rem;
  color: #333;
  margin: 0 0 15px 0;
}

.vre-property__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vre-property__item {
  font-size: 1rem;
  color: #666;
  margin: 0 0 5px 0;
}

/* Property Description */
.vre-property__description {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.vre-property__content {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Property Gallery */
.vre-property__gallery {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.vre-property__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.vre-property__gallery-image {
  max-width: 100%;
  height: auto;
}

/* Property Open Hours */
.vre-property__open-hours {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.vre-property__open-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vre-property__open-hours-item {
  font-size: 1rem;
  color: #666;
  margin: 0 0 10px 0;
}

.vre-property__open-hours-time {
  display: block;
  color: #333;
}

/* Property Staff */
.vre-property__staff {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.vre-property__staff-member {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.vre-property__staff-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.vre-property__staff-info {
  flex: 1;
}

.vre-property__staff-name {
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 5px 0;
}

.vre-property__staff-email,
.vre-property__staff-phone {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vre-property__details {
    flex-direction: column;
  }

  .vre-property__gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .vre-property__staff-member {
    flex-direction: column;
    text-align: center;
  }

  .vre-property__staff-photo {
    margin-bottom: 10px;
  }
}

/* /Single Property */
