
/* =========================
   GRID
========================= */

.aps-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    width:100%;
    margin-top:20px;
}

/* =========================
   CARD
========================= */

.aps-card{
    border:1px solid #ddd;
    border-radius:10px;
    padding:10px;
    background:#fff;
    box-sizing:border-box;
    overflow:hidden;
}

/* =========================
   IMAGE
========================= */

.aps-card img{
    width:100%;
    height:auto;
    display:block;
    border-radius:8px;
}

/* =========================
   TITLE
========================= */

.aps-card h3{
    font-size:18px;
    line-height:1.5;
    margin-top:10px;
	    margin-bottom: 0px;
}

.aps-card h3 a{
    text-decoration:none;
    color:#111;
}

/* =========================
   BUTTON
========================= */


.aps-load-more{
    display:block;
    margin:30px auto;
    padding:5px 24px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    text-align:center;
}


.aps-load-more{
    display:table !important;
    margin:20px auto !important;
}



/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .aps-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:15px;
    }

    .aps-card h3{
        font-size:15px;
    }
}

