/* PROJECT CATEGORIES SECTION */

.news-section{
    position: relative;
}

.news-section .sec-title{
    text-align:center;
}

.news-section .news-block{
    margin-bottom:30px;
}

.news-block-one .inner-box{
    position:relative;
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all 0.35s ease;
}

.news-block-one .inner-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.news-block-one .image-box{
    position:relative;
    overflow:hidden;
}

.news-block-one .image-box .image{
    margin:0;
}

.news-block-one .image-box img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:transform 0.6s ease;
}

.news-block-one .inner-box:hover .image-box img{
    transform:scale(1.08);
}

/* title overlay */

.news-block-one .title-text{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:22px 20px;
    background:linear-gradient(transparent, rgba(0,0,0,0.75));
}

.news-block-one .title-text h3{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
    line-height:1.3;
    margin:0;
}

.news-block-one .title-text h3 a{
    color:#ffffff;
    text-decoration:none;
}

.news-block-one .title-text h3 a:hover{
    color:#ff5e14;
}

/* lower content */

.news-block-one .lower-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
    background:#ffffff;
}

.news-block-one .post-date{
    font-size:18px;
    font-weight:700;
    color:#ffffff;
    background:#e21c23;
    padding:10px 14px;
    border-radius:6px;
}

.news-block-one .author-box{
    text-align:right;
}

.news-block-one .author-box span{
    display:block;
    font-size:12px;
    color:#888;
    margin-bottom:4px;
}

.news-block-one .author-box h4{
    font-size:15px;
    font-weight:600;
    margin:0;
    color:#222;
}

/* GRID RESPONSIVE */

/* desktop */
@media (min-width:1200px){

.news-block-one .image-box img{
    height:270px;
}

}

/* tablet */
@media (max-width:991px){

.news-block-one .image-box img{
    height:240px;
}

.news-block-one .title-text h3{
    font-size:18px;
}

}

/* mobile */
@media (max-width:767px){

.news-block-one .image-box img{
    height:220px;
}

.news-block-one .title-text{
    padding:18px 16px;
}

.news-block-one .title-text h3{
    font-size:17px;
}

.news-block-one .lower-content{
    padding:16px;
}

.news-block-one .post-date{
    font-size:16px;
    padding:8px 12px;
}

}

/* small mobile */

@media (max-width:480px){

.news-block-one .image-box img{
    height:200px;
}

.news-block-one .title-text h3{
    font-size:16px;
}

}




