/* =========================
   PROPERTIES SECTION
========================= */

.properties {
    background: #f8fafc;
}

/* GRID */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

/* ITEM */
.property-item {
    padding: 26px;
    position: relative;
    transition: 0.2s ease;
}

/* DIVIDERS */
.property-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: #e2e8f0;
}

/* LABEL (CONSISTENT SYSTEM) */
.property-item .label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #14b8a6;

    display: block;
    margin-bottom: 10px;
}

/* TITLE */
.property-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #0f172a;
}

/* TEXT */
.property-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* HOVER */
.property-item:hover {
    background: #f8fafc;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 960px) {

    .properties-grid {
        grid-template-columns: 1fr 1fr;
    }

    .property-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 600px) {

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .property-item::after {
        display: none;
    }
}