/* CONTENEDOR GENERAL */
.properties-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* TARJETA */
.property-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: #c60000;
}

/* IMAGEN */
.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENIDO */
.property-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #000;
}

/* CATEGORÍA */
.categoria {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c60000;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* DESCRIPCIÓN */
.description-container p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c7675;
    font-weight: 300;
}

/* RESPONSIVE FINO */
@media (max-width: 768px) {
    .properties-container {
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .property-card img {
        height: 200px;
    }
}