/*
|--------------------------------------------------------------------------
| Post Portal
|--------------------------------------------------------------------------
*/

.post-section{

    padding:60px 0;
}

/*
|--------------------------------------------------------------------------
| Box
|--------------------------------------------------------------------------
*/

.post-box{

    background:#fff;

    border:1px solid #e5e5e5;

    border-radius:12px;

    padding:20px;

    margin-bottom:25px;
}

.post-box:hover{

    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.post-box-title{

    font-size:34px;

    font-weight:500;

    color:#198754;

    font-size:34px;
    margin:0;
}

/*
|--------------------------------------------------------------------------
| List
|--------------------------------------------------------------------------
*/

.post-list{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.post-item{

    padding-bottom:15px;

    border-bottom:1px solid #eeeeee;
}

.post-item:last-child{

    border-bottom:none;

    padding-bottom:0;
}

.post-item a{

    color:#333;

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    transition:.3s;
}

.post-item a:hover{

    color:#198754;
}

/*
|--------------------------------------------------------------------------
| More
|--------------------------------------------------------------------------
*/

.post-more{

    text-align:right;

    margin-top:20px;
}

.post-more a{

    color:#198754;

    text-decoration:none;

    font-weight:600;
}

.post-more a:hover{

    text-decoration:underline;
}

/*
|--------------------------------------------------------------------------
| Promotion
|--------------------------------------------------------------------------
*/

.promotion-item{

    margin-bottom:20px;
}

.promotion-item:last-child{

    margin-bottom:0;
}

.promotion-item img{

    width:100%;

    border-radius:10px;

    display:block;

    transition:.3s;
}

.promotion-item:hover img{

    transform:scale(1.02);
}

/*
|--------------------------------------------------------------------------
| Article
|--------------------------------------------------------------------------
*/

.article-item{

    display:flex;

    gap:15px;

    margin-bottom:15px;

    align-items:center;
}

.article-item:last-child{

    margin-bottom:0;
}

.article-item img{

    width:140px;

    height:90px;

    object-fit:cover;

    border-radius:8px;

    flex-shrink:0;
}

.article-content h5{

    margin:0 0 8px;

    font-size:18px;

    font-weight:600;
}

.article-content p{

    margin:0;

    font-size:14px;

    color:#666;

    line-height:1.6;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .post-box{

        margin-bottom:20px;
    }

    .post-box-title{

        font-size:28px;
    }

    .article-item{

        flex-direction:column;

        align-items:flex-start;
    }

    .article-item img{

        width:100%;

        height:200px;
    }

}