/**
 * Frontend Styles
 */

.reoffice-properties-container {
    margin: 20px 0;
}

.reoffice-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.reoffice-property-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reoffice-property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.reoffice-property-image {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
}

.reoffice-property-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reoffice-property-content {
    padding: 20px;
}

.reoffice-property-title {
    font-size: 1.25em;
    font-weight: 600;
    margin: 0 0 10px 0;
}

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

.reoffice-property-title a:hover {
    text-decoration: underline;
}

.reoffice-property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 10px 0;
    font-size: 0.9em;
    color: #666;
}

.reoffice-price {
    font-size: 1.3em;
    font-weight: 700;
    color: #2563eb;
}

.reoffice-property-location {
    margin-top: 10px;
    color: #888;
    font-size: 0.9em;
}

.reoffice-no-results {
    text-align: center;
    padding: 40px;
    color: #888;
}

.reoffice-pagination {
    margin-top: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .reoffice-properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

