/* ========================================= */
/* TITLE */
/* ========================================= */

h1{
    margin:40px 0 0;
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#1B5E20;
    text-transform:uppercase;
}

.title-decoration{
    margin:0 0 15px;
    text-align:center;
}


/* ========================================= */
/* NEWS LIST */
/* ========================================= */

.news{
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

.news-list{
    display:grid;
    gap:30px;
}

.news-card{
    display:flex;
    gap:20px;
    padding:15px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.news-card img{
    width:220px;
    height:140px;
    object-fit:cover;
    border-radius:6px;
    flex-shrink:0;
}


/* ========================================= */
/* NEWS CONTENT */
/* ========================================= */

.news-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.news-content h2{
    margin:0;
    font-size:32px;
}

.news-content h2 a{
    color:#1B5E20;
    text-decoration:none;
}

.news-content h2 a:hover{
    text-decoration:underline;
}

.news-content time{
    margin:4px 0 8px;
    font-size:14px;
    color:#777;
}

.news-content p{
    margin:0;
    font-size:20px;
    color:#555;
    line-height:1.5;
    text-align:left;
}

.read-more{
    margin-top:10px;
    color:#1B5E20;
    font-size:20px;
    font-weight:bold;
    text-decoration:none;
}

.read-more:hover{
    text-decoration:underline;
}


/* ========================================= */
/* ARTICLE */
/* ========================================= */

.article{
    max-width:1000px;
    margin:40px auto;
    padding:0 20px;
}


/* ========================================= */
/* BREADCRUMB */
/* ========================================= */

.breadcrumb{
    margin-bottom:30px;
    font-size:14px;
}

.breadcrumb a{
    color:#666;
    text-decoration:none;
}

.breadcrumb a:hover{
    color:#1B5E20;
}

.breadcrumb span{
    margin:0 8px;
    color:#999;
}


/* ========================================= */
/* ARTICLE HEADER */
/* ========================================= */

.article-header{
    margin-bottom:40px;
}

.article-title{
    margin:0;
    font-size: 25px;
    font-weight:700;
    color:#1B5E20;
}

.article-date{
    display:block;
    margin-top:15px;
    font-size:15px;
    color:#777;
}


/* ========================================= */
/* ARTICLE INTRO */
/* ========================================= */

.article-intro{
    margin-bottom:60px;
}

.article-cover{
    width:100%;
    margin-bottom:25px;
    border-radius:8px;
}

.article-intro p{
    font-size:18px;
    line-height:1.8;
    text-align:justify;
}


/* ========================================= */
/* ARTICLE SECTION */
/* ========================================= */

.article-section{
    margin-bottom:60px;
}

.article-section h2{
    margin-bottom: 10px;
    font-size:28px;
    color:#1B5E20;
}

.article-section img{
    width:100%;
    margin-bottom:20px;
    border-radius:8px;
}

.article-section p{
    font-size:18px;
    line-height:1.8;
    text-align:justify;
}
/*=========================
    THƯ VIỆN ẢNH
=========================*/
.news-gallery{
    max-width:1000px;
    margin:60px auto;
}

.news-gallery h2{
    text-align:center;
    color:#1B5E20;
    font-size:34px;
    margin-bottom:30px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #ddd;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.gallery-grid img:hover{
    transform:scale(1.03);
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}


/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width:768px){

    .news{
        padding:0 15px;
    }

    .news-card{
        flex-direction:column;
    }

    .news-card img{
        width:100%;
        height:auto;
    }

    .article{
        padding:0 15px;
    }

    .article-title{
        font-size:30px;
    }

    .article-section h2{
        font-size:24px;
    }

    .article-intro p,
    .article-section p{
        font-size:16px;
    }

}