/* ===========================
   REFUGIO
=========================== */

.np-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin:40px 0;
}

.np-card{
    background:#fff;
    border:1px solid #e5e5e5;
    transition:.2s;
}

.np-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.np-card img{
    width:100%;
    display:block;
}

.np-card-body{
    padding:18px;
}

.np-cat{
    color:#d60000;
    font-size:12px;
    font-weight:bold;
    text-transform:uppercase;
    margin-bottom:10px;
}

.np-card h3{
    margin:0 0 10px;
    font-size:24px;
    line-height:1.2;
}

.np-card h3 a{
    color:#111;
    text-decoration:none;
}

.np-card h3 a:hover{
    color:#d60000;
}

.np-meta{
    color:#777;
    font-size:13px;
    margin-bottom:12px;
}

.np-card p{
    margin:0;
    color:#444;
    line-height:1.6;
}

@media(max-width:900px){

.np-grid{

grid-template-columns:1fr;

}

}