/* =========================
   LIST ARTIKEL PAGE
========================= */

.artikel-page{
    background:#f5f6fa;
    padding:70px 0;
    overflow-x:hidden;
    min-height:100vh;
}

/* LINK */

.artikel-page a{
    text-decoration:none;
}

.artikel-page img{
    max-width:100%;
    display:block;
}

/* TITLE */

.artikel-page .section-title{
    margin-bottom:50px;
}

.artikel-page .section-title span{
    color:#c40000;
    font-weight:700;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.artikel-page .section-title h1{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-top:10px;
    line-height:1.3;
}

.artikel-page .section-title p{
    color:#666;
    line-height:1.8;
    margin-top:15px;
}

/* CARD */

.artikel-page .article-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.artikel-page .article-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE */

.artikel-page .article-image{
    position:relative;
    overflow:hidden;
}

.artikel-page .article-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.4s;
}

.artikel-page .article-card:hover .article-image img{
    transform:scale(1.05);
}

/* CATEGORY */

.artikel-page .article-category{
    position:absolute;
    top:15px;
    left:15px;
    background:#c40000;
    color:#fff;
    padding:7px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    z-index:2;
}

/* CONTENT */

.artikel-page .article-content{
    padding:25px;
}

.artikel-page .article-content h2{
    font-size:24px;
    line-height:1.5;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
    transition:0.3s;
}

.artikel-page .article-card:hover .article-content h2{
    color:#c40000;
}

.artikel-page .article-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
    font-size:15px;
}

/* META */

.artikel-page .article-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    color:#888;
    font-size:14px;
}

.artikel-page .read-more{
    color:#c40000;
    font-weight:700;
}

/* =========================
   PAGINATION
========================= */

.artikel-page .pagination-custom{
    margin-top:60px;
    display:flex;
    justify-content:center;
}

.artikel-page .pagination-custom nav{
    display:flex;
    justify-content:center;
}

.artikel-page .pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    margin:0;
    padding:0;
}

.artikel-page .pagination .page-item{
    list-style:none;
}

.artikel-page .pagination .page-link{
    min-width:45px;
    height:45px;

    padding:0 15px;

    border:none;
    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:#444;

    font-size:14px;
    font-weight:600;
    text-decoration:none;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    transition:.3s ease;
}

.artikel-page .pagination .page-link:hover{
    background:#f8f8f8;
    color:#c40000;
}

.artikel-page .pagination .active .page-link{
    background:#c40000;
    color:#fff;
}

.artikel-page .pagination .disabled .page-link{
    background:#f3f3f3;
    color:#999;
    box-shadow:none;
    cursor:not-allowed;
}

/* MOBILE */

@media(max-width:768px){

    .artikel-page{
        padding:50px 0;
    }

    .artikel-page .section-title{
        margin-bottom:35px;
    }

    .artikel-page .section-title h1{
        font-size:28px;
    }

    .artikel-page .section-title p{
        font-size:14px;
    }

    .artikel-page .article-content{
        padding:18px;
    }

    .artikel-page .article-content h2{
        font-size:19px;
    }

    .artikel-page .article-content p{
        font-size:14px;
    }

    .artikel-page .article-image img{
        height:200px;
    }

    .artikel-page .pagination-custom .page-link{
        width:40px;
        height:40px;
    }

}