/* ============================================================
   ÁLVORA — LAYOUT PROPIEDADES (/propiedades)
   Estructura + responsive
============================================================ */

/* Página */
.alv-page--propiedades{
  padding: 0 0 40px 0;
}

/* Contenedor general (cards / contenido) */
.alv-wrap{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* Layout */
.alv-layout{
  display:block;
}

/* Resultados */
.alv-results{
  width:100%;
  padding-top: 40px;
}

/* DESKTOP GRANDE */
#alv-listado{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* TABLET */
@media (max-width: 1200px){
  #alv-listado{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MÓVIL */
@media (max-width: 768px){
  #alv-listado{
    grid-template-columns: 1fr;
  }

  /* alv-wrap con padding reducido en móvil — afecta a toda la web */
  .alv-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Cards sin padding */
.alv-card{
  padding:0 !important;
}

/* FIX STICKY — solo para el listado, no para la ficha */
.page-propiedades .alv-layout,
.page-propiedades .alv-listado-app,
.page-propiedades .alv-wrap{
  overflow:visible !important;
  transform:none !important;
}

/* FULL WIDTH REAL PARA EL STICKY */
.alv-filters-shell{
  max-width:none !important;
}

/* ======================================================
   MIGA DE PAN · LISTADO
====================================================== */
.alv-breadcrumb--listado {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0 10px;
  font-size: 10.5px;
  font-weight: 300;
  font-family: 'Jost', 'Inter', sans-serif;
  color: #58534c;
  letter-spacing: .04em;
  border-bottom: 0.5px solid #e8e4de;
  margin-bottom: 4px;
}

.alv-breadcrumb--listado .alv-breadcrumb__home {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #58534c;
  text-decoration: none;
  transition: color .15s;
}
.alv-breadcrumb--listado .alv-breadcrumb__home svg {
  display: block;
  vertical-align: middle;
  flex-shrink: 0;
  position: relative;
  top: -0.5px;
}
.alv-breadcrumb--listado .alv-breadcrumb__home:hover { color: #0e0e0e; }
.alv-breadcrumb--listado .alv-breadcrumb__sep { color: #d0ccc6; font-size: 10px; }
.alv-breadcrumb--listado .alv-breadcrumb__current { color: #0e0e0e; font-weight: 400; }

@media (max-width: 768px) {
  .alv-breadcrumb--listado { padding: 10px 0 8px; }
}
