/**
 * Property feed styles
 */
.lc-property-feed-wrap {
    padding: 20px 0;
}

.lc-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.lc-property-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #1a1f24;
    border: 1px solid #505050;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lc-property-card:hover {
    transform: translateY(-4px);
    border-color: #E2C48E;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.lc-card-image-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.lc-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lc-card-content {
    padding: 18px;
}

.lc-card-title {
    margin: 0 0 10px;
    color: #E2C48E;
    font-size: 20px;
}

.lc-card-location,
.lc-card-rating,
.lc-card-meta {
    color: #C2C2C2;
    font-size: 14px;
    margin-bottom: 10px;
}

.lc-card-location i,
.lc-card-meta i {
    color: #E2C48E;
    margin-right: 6px;
}

.lc-card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lc-card-price {
    margin-top: 12px;
    color: #E2C48E;
    font-size: 24px;
    font-weight: 700;
}

.lc-price-period {
    font-size: 14px;
    font-weight: 400;
}

.lc-load-more {
    text-align: center;
    margin-top: 22px;
}

.lc-load-more-btn {
    min-width: 200px;
}

.lc-no-properties {
    padding: 24px;
    text-align: center;
    color: #C2C2C2;
    background: #1a1f24;
    border-radius: 16px;
    border: 1px solid #505050;
}

.lc-loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(226,196,142,.35);
    border-top-color: #E2C48E;
    border-radius: 50%;
    vertical-align: middle;
    animation: lcSpin 1s linear infinite;
}

@keyframes lcSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .lc-properties-grid {
        grid-template-columns: 1fr;
    }
}
