/*=========================================
   COURSE CATEGORY HERO
=========================================*/

.course-category-hero{
    padding:80px 0;
    background:#f8f9fc;
}

.course-category-hero .breadcrumb{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    margin-bottom:20px;
    font-size:15px;
}

.course-category-hero .breadcrumb a{
    color:#175A99;
    text-decoration:none;
    transition:.3s;
}

.course-category-hero .breadcrumb a:hover{
    color:#F74723;
}

.course-category-hero .breadcrumb span{
    color:#888;
}

.category-heading{
    max-width:800px;
}

.category-heading h1{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    color:#002147;
    margin-bottom:18px;
}

.category-heading p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}


/*=========================================
   COURSE LIST
=========================================*/

.course-category-list{
    padding:80px 0;
}

.course-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}


/*=========================================
   COURSE CARD
=========================================*/

.course-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:all .35s ease;

}

.course-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}


/*=========================================
   IMAGE
=========================================*/

.course-image{

    overflow:hidden;

}

.course-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

    transition:transform .5s ease;

}

.course-card:hover .course-image img{

    transform:scale(1.06);

}


/*=========================================
   CONTENT
=========================================*/

.course-content{

    padding:25px;

}

.course-content h3{

    margin-bottom:15px;

    font-size:24px;

    line-height:1.4;

}

.course-content h3 a{

    color:#002147;

    text-decoration:none;

    transition:.3s;

}

.course-content h3 a:hover{

    color:#F74723;

}

.course-content p{

    color:#666;

    font-size:15px;

    line-height:1.8;

    margin-bottom:25px;

}


/*=========================================
   BUTTON
=========================================*/

.course-buttons{

    display:flex;

    gap:15px;

}

.course-buttons a{

    flex:1;

    text-align:center;

    padding:13px 20px;

    border-radius:8px;

    background:#175A99;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.course-buttons a:hover{

    background:#F74723;

    color:#fff;

}


/*=========================================
   MOBILE
=========================================*/

@media(max-width:991px){

    .category-heading h1{

        font-size:40px;

    }

}

@media(max-width:768px){

    .course-category-hero{

        padding:60px 0;

    }

    .course-category-list{

        padding:60px 0;

    }

    .course-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .category-heading h1{

        font-size:32px;

    }

    .category-heading p{

        font-size:16px;

    }

    .course-image img{

        height:220px;

    }

    .course-content{

        padding:20px;

    }

    .course-content h3{

        font-size:22px;

    }

}

@media(max-width:480px){

    .course-category-hero{

        padding:50px 0;

    }

    .category-heading h1{

        font-size:28px;

    }

    .course-content{

        padding:18px;

    }

    .course-buttons{

        flex-direction:column;

    }

    .course-buttons a{

        width:100%;

    }

}