/* PATCH 011 - Inicio: Ver mapa / Crear evento / stats en una sola línea real */

#screen-home .home-intro-panel{
  display:grid;
  gap:12px;
}

#screen-home .home-intro-copy{
  display:block;
}

#screen-home .hero-actions,
#screen-home .compact-stats{
  display:none !important;
}

#screen-home .home-quick-row{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
  width:100%;
  align-items:stretch;
}

#screen-home .home-quick-row button,
#screen-home .home-quick-row article{
  width:100%;
  min-width:0;
  min-height:46px;
  margin:0;
  padding:7px 8px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-sizing:border-box;
}

#screen-home .home-quick-row button{
  font-size:.76rem;
  font-weight:800;
  line-height:1.05;
  white-space:normal;
}

#screen-home .home-quick-stat{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  color:#fff;
  gap:5px;
}

#screen-home .home-quick-stat b{
  display:inline;
  font-size:1rem;
  line-height:1;
}

#screen-home .home-quick-stat span{
  display:inline;
  margin:0;
  color:var(--muted);
  font-size:.68rem;
  line-height:1;
}

@media(max-width:430px){
  #screen-home .home-quick-row{
    gap:5px;
  }

  #screen-home .home-quick-row button,
  #screen-home .home-quick-row article{
    min-height:42px;
    padding:5px 4px;
    border-radius:12px;
  }

  #screen-home .home-quick-row button{
    font-size:.61rem;
  }

  #screen-home .home-quick-stat{
    flex-direction:column;
    gap:2px;
  }

  #screen-home .home-quick-stat b{
    font-size:.86rem;
  }

  #screen-home .home-quick-stat span{
    font-size:.56rem;
  }
}

@media(max-width:360px){
  #screen-home .home-quick-row{
    gap:4px;
  }

  #screen-home .home-quick-row button{
    font-size:.56rem;
  }

  #screen-home .home-quick-stat b{
    font-size:.8rem;
  }

  #screen-home .home-quick-stat span{
    font-size:.52rem;
  }
}
