.estaty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.property-card {
    border: 2px solid yellow;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.property-card img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover img {
    transform: scale(1.05);
}

.property-info {
    padding: 15px;
    color: black;
}

.property-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.property-info p {
    margin: 5px 0;
}

.property-info p strong {
    font-weight: 600;
}
.load-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

#load-more-btn {
  display: inline-block;
}

.estaty-single-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.estaty-single-header h1 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.estaty-single-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.estaty-single-image {
    flex: 1 1 50%;
}

.estaty-single-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}
