/*==================================================
    HOME CATEGORY SECTION
==================================================*/

.home-category-section{
    margin:60px 0;
}

.home-category-grid{
    display:grid;
    grid-template-columns:1.8fr 1fr;
    gap:30px;
    align-items:stretch;
}

/*==============================
    خبر بزرگ
==============================*/

.home-category-featured{
    width:100%;
    height:100%;
}

.home-category-featured .post-card-featured,
.home-category-featured-card{
    height:100%;
}

/*==============================
    ستون اخبار کوچک
==============================*/

.home-category-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/*==============================
    کارت خبر کوچک
==============================*/

.home-category-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    transition:.3s;
}

.home-category-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.home-category-card-link{
    display:flex;
    align-items:center;
    gap:15px;
    color:inherit;
    text-decoration:none;
    padding:12px;
}

.home-category-card-image{
    width:130px;
    min-width:130px;
    height:90px;
    border-radius:12px;
    overflow:hidden;
}

.home-category-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.home-category-card:hover .home-category-card-image img{
    transform:scale(1.05);
}

.home-category-card-content{
    flex:1;
    padding:0;
}

.home-category-card-meta{
    display:flex;
    align-items:center;
    gap:8px;
    color:#888;
    font-size:13px;
    margin-bottom:8px;
}

.home-category-card-meta i{
    color:var(--primary);
}

.home-category-card-title{
    margin:0;
    color:#222;
    font-size:17px;
    font-weight:700;
    line-height:1.9;
    transition:.3s;
}

.home-category-card:hover .home-category-card-title{
    color:var(--primary);
}

/*==============================
    Tablet
==============================*/

@media (max-width:991px){

    .home-category-grid{
        grid-template-columns:1fr;
    }

    .home-category-list{
        margin-top:20px;
    }

}

/*==============================
    Mobile
==============================*/

@media (max-width:768px){

    .home-category-card-link{
        flex-direction:column;
        align-items:flex-start;
    }

    .home-category-card-image{
        width:100%;
        height:200px;
    }

}

.editor-section .section-title i{
    color:#8b5cf6;
}

/* Fix category archive featured card */

.post-card-featured-title {
    color:#222 !important;
    text-decoration:none !important;
    font-size:32px;
    line-height:1.8;
}


.post-card-featured-title:hover {
    color:#b30000 !important;
}


.post-card-featured-link,
.post-card-featured-link:hover,
.post-card-featured-link:visited {
    text-decoration:none !important;
    color:inherit !important;
}


.post-card-featured-content p {
    color:#555 !important;
    text-decoration:none !important;
}


.post-card-featured .featured-btn {
    color:#b30000 !important;
}

.post-card-featured-title {
    font-weight:800;
    margin-top:15px;
    margin-bottom:15px;
}

.post-card-featured-content p {

    font-size:16px;
    line-height:2.2;
    color:#555 !important;

}

.post-card-featured .featured-btn {

    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:15px;
    font-weight:700;

}

/* ===================================
   Category Archive New Design
=================================== */


.category-archive{
    padding:50px 0;
    background:#f8f9fa;
}


/* عنوان دسته */

.category-title-box{

    background:#fff;

    padding:25px 30px;

    border-radius:16px;

    margin-bottom:35px;

    border-right:5px solid var(--primary-color);

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}


.category-title-box h1{

    margin:0;

    font-size:32px;

    font-weight:800;

    color:#222;

}



/* حذف استایل لینک */

.category-card a{

    text-decoration:none !important;

    color:inherit !important;

}



/* شبکه خبرها */

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



/* کارت */

.category-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 6px 20px rgba(0,0,0,.08);

    transition:.3s;

}


.category-card:hover{

    transform:translateY(-5px);

}



/* تصویر */

.category-card-image img{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;

}



/* متن */

.category-card-content{

    padding:20px;

}


.category-card-content h2{

    font-size:20px;

    line-height:1.8;

    color:#222;

    margin:0 0 15px;

}


.category-card-content p{

    color:#666;

    line-height:2;

    font-size:15px;

}



.category-card-meta{

    margin-top:15px;

    color:#888;

    font-size:13px;

}


.category-card-meta i{

    color:var(--primary-color);

    margin-left:5px;

}



/* موبایل */

@media(max-width:991px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.category-grid{

grid-template-columns:1fr;

}

}