.news_page {
    padding: 60px 0;
    background: #fff;
}
.news_page_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news_grid {
    margin-top: 20px;
}
.news_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news_card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.news_card_img {
    display: block;
    overflow: hidden;
    height: 200px;
}
.news_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.news_card:hover .news_card_img img {
    transform: scale(1.05);
}
.news_no_img {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}
.news_card_body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news_date {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}
.news_card_title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.4;
}
.news_card_title a {
    color: #111;
    text-decoration: none;
}
.news_card_title a:hover {
    color: #e63232;
}
.news_card_desc {
    font-size: 14px;
    color: #666;
    flex: 1;
    line-height: 1.6;
}
.news_read_more {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #e63232;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news_read_more:hover {
    color: #b71c1c;
}
/* Pagination */
.news_pagination {
    margin-top: 40px;
    text-align: center;
}
.news_pagination .pagination {
    justify-content: center;
}
.news_pagination .page-link {
    color: #e63232;
    border-color: #eee;
}
.news_pagination .page-item.active .page-link {
    background: #e63232;
    border-color: #e63232;
    color: #fff;
}

/* Load More */
.news_loadmore_wrap {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}
.news_loadmore_btn {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    border: 2px solid #e63232;
    color: #e63232;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
}
.news_loadmore_btn:hover {
    background: #e63232;
    color: #fff;
}
.news_loadmore_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Detail page */
.news_detail_page {
    padding: 120px 0 60px;
    background: #fff;
}
.news_article_title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}
.news_article_meta {
    margin-bottom: 20px;
    color: #999;
    font-size: 13px;
}
.news_article_img {
    margin-bottom: 24px;
}
.news_article_img img {
    max-width: 100%;
    border-radius: 4px;
}
.news_article_intro {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border-left: 4px solid #e63232;
    padding-left: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}
.news_article_content {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}
.news_article_content img {
    max-width: 100%;
}
.news_related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.news_related_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #111;
}
.news_card_sm .news_card_img {
    height: 150px;
}
.news_card_sm .news_card_title {
    font-size: 14px;
}
.breadcrum_wrap {
    margin-bottom: 20px;
}
.breadcrum_wrap .breadcrum {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    font-size: 13px;
    gap: 6px;
}
.breadcrum_wrap .breadcrum li::after {
    content: '/';
    margin-left: 6px;
    color: #bbb;
}
.breadcrum_wrap .breadcrum li:last-child::after {
    content: '';
}
.breadcrum_wrap .breadcrum a {
    color: #e63232;
    text-decoration: none;
}
