/* ============================================
   RESPONSIVE DIRECTORIO — DESKTOP
   Breakpoint: min-width 1024px

   Refinamientos de escritorio del módulo Directorio.
   ============================================ */

@media screen and (min-width: 1024px) {

    /* Main: hasta 3 tarjetas en fila */
    .dir-main-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Form grid: 2 columnas uniformes */
    .dir-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contenedor amplio */
    .dir-page-container--wide {
        max-width: 1100px;
        margin: 0 auto;
    }
}

/* ============================================
   SUBVISTA: Propiedades — desktop
   ============================================ */

/* --------------------------------------------
   FICHA DE PROPIEDAD
   -------------------------------------------- */
@media screen and (min-width: 1024px) {

    /* En pantallas grandes, la ficha puede usar 3 columnas */
    .prop-ficha-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* La tarjeta wide ocupa todo el ancho disponible */
    .prop-ficha-card--wide {
        grid-column: 1 / -1;
    }
}
