/*==========================================================
  Explore Subjects
==========================================================*/

.gjp-subjects{

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    box-shadow:0 4px 18px rgba(15,23,42,.06);
    overflow:hidden;

}

.gjp-subjects-wrapper{

    padding:18px;

}

/*==========================================================
 Header
==========================================================*/

.gjp-subjects .gjp-card-header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:20px;

}

.gjp-subjects .gjp-card-title{

    margin:0;

    font-size:22px;

    font-weight:700;

    color:#111827;

}

.gjp-subjects .gjp-view-all{

    text-decoration:none;

    color:#2563eb;

    font-size:14px;

    font-weight:600;

}

/*==========================================================
 Grid
==========================================================*/

.gjp-subjects-grid{

    display:grid;

    grid-template-columns:repeat(9,1fr);

    gap:12px;

}

/*==========================================================
 Card
==========================================================*/

.gjp-subject-card{

    text-decoration:none;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:16px 10px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.gjp-subject-card:hover{

    transform:translateY(-4px);

    border-color:#2563eb;

    box-shadow:0 10px 22px rgba(37,99,235,.10);

}

/*==========================================================
 Icon
==========================================================*/

.gjp-subject-icon{

    width:56px;

    height:56px;

    margin-bottom:12px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.gjp-subject-icon img{

    width:48px;

    height:48px;

    object-fit:contain;

    transition:.3s;

}

.gjp-subject-card:hover .gjp-subject-icon img{

    transform:scale(1.08);

}

/*==========================================================
 Title
==========================================================*/

.gjp-subject-title{

    margin:0;

    font-size:14px;

    font-weight:600;

    line-height:1.35;

    color:#1f2937;

    text-align:center;

}

/*==========================================================
 Tablet
==========================================================*/

@media(max-width:992px){

    .gjp-subjects-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

/*==========================================================
 Mobile
==========================================================*/

@media(max-width:576px){

    .gjp-subjects-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .gjp-subject-title{

        font-size:13px;

    }

}