/*==================================
LATEST QUIZZES
==================================*/

.gbk-latest{

    padding:90px 20px;

    background:#ffffff;

}

/*==================================
GRID
==================================*/

.gbk-latest-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==================================
CARD
==================================*/

.gbk-latest-card{

    padding:35px;

}

.gbk-latest-tag{

    display:inline-block;

    padding:6px 14px;

    background:#dcfce7;

    color:#15803d;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.gbk-latest-card h3{

    font-size:24px;

    color:#111827;

    margin-bottom:15px;

}

.gbk-latest-card p{

    color:#6b7280;

    margin-bottom:30px;

}

.gbk-primary-btn{

    display:inline-block;

    padding:14px 24px;

    background:#2563eb;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.gbk-primary-btn:hover{

    background:#1d4ed8;

}

/*==================================
TABLET
==================================*/

@media(max-width:992px){

.gbk-latest-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.gbk-latest-grid{

grid-template-columns:1fr;

}

}