/* News Update Layout - 2 Column Layout with Images on Left, Text Only on Right */

.news_update-index {
    padding: 11rem 0 9rem;
    background-color: #fff;
}

.news_update-index .news_header-index {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news_update-index .news_header-index .shihao_section_title {
    margin: 0;
}

.news_update-index .news_header-index .news_read_more-index {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 8px; */
    /* color: #3366CC; */
    /* text-decoration: none; */
    /* font-size: 1.6rem; */
    /* font-weight: 500; */
    /* transition: color 0.3s ease; */
}

.news_update-index .news_header-index .news_read_more-index:hover {
    color: #1D4398;
}

.news_update-index .news_header-index .news_read_more-index svg {
    transition: transform 0.3s ease;
}

.news_update-index .news_header-index .news_read_more-index:hover svg {
    transform: translateX(4px);
}

/* Main Grid Container */
.news_update-index .news_grid_container-index {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.news_update-index .news_grid_layout-index {
    display: flex;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    align-items: start;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    max-width: 100%;
}

/* Left Column - Featured News with Images */
.news_update-index .news_left_section-index {
    display: block;
    flex-direction: column;
    gap: 3rem;
    padding-right: 0;
    flex: 0 0 66%;
}

.news_update-index .news_left_section-index .news_item-index_featured {
    display: flex;
    gap: 0;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 3rem;
    padding-right: 0;
    background: #FAF9FD;
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    min-height: 29rem;
}

.news_update-index .news_left_section-index .news_item-index_featured:hover {
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
    /* transform: translateY(-2px); */
}

.news_update-index .news_left_section-index .news_image-index {
    flex: 0 0 200px;
    /* height: 28rem; */
    border-radius: 0;
    overflow: hidden;
}

.news_update-index .news_left_section-index .news_image-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news_update-index .news_left_section-index .news_item-index_featured:hover .news_image-index img {
    transform: scale(1.05);
}

.news_update-index .news_left_section-index .news_content-index {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 27rem;
    width: auto;
    padding: 0 4rem;
    /* background: #261d42; */
    /* position: relative; */
    /* top: -30px; */
    max-width: 50%;
}

/* Right Column - Text Only News */
.news_update-index .news_right_section-index {
    display: flex;
    flex-direction: column;
    /* gap: 3rem; */
    flex: 1;
    max-width: max(calc(34% - 3rem),calc(34% - 0rem));
    /* background: teal; */
}

.news_update-index .news_right_section-index .news_item-index_text_only {
    padding: 0;
    background: #fff;
    border-radius: 0;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
}

.news_update-index .news_right_section-index .news_item-index_text_only:hover {
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
    /* transform: translateY(-2px); */
}

.news_update-index .news_right_section-index .news_image-index {
    display: none !important;
}

.news_update-index .news_right_section-index .news_content-index {
    padding: 0 4rem;
    max-width: 100%;
}

/* Typography */
.news_update-index .news_content-index h3 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.news_update-index .news_content-index h3 a {
    /* color: inherit; */
    /* text-decoration: none; */
    /* font-size: 1.8rem; */
    /* font-weight: 600; */
    /* font-family: 'Poppins', sans-serif; */
    transition: color 0.3s ease;
}

.news_update-index .news_content-index h3 a:hover {
    color: #3366CC;
}

.news_update-index .news_date-index {
    /* color: #999; */
    /* font-size: 1.4rem; */
    /* margin-bottom: 1rem; */
    /* font-family: 'DIN Next LT Pro Light', sans-serif; */
    /* font-weight: 300; */
    /* letter-spacing: -0.3px; */
}

.news_update-index .news_excerpt-index {
    /* color: #666; */
    margin: 1rem 0 2.5rem 0;
    /* font-size: 1.5rem; */
    /* line-height: 1.6; */
    /* font-family: 'Montserrat Regular', sans-serif; */
    /* overflow: hidden; */
    /* display: -webkit-box; */
    /* -webkit-box-orient: vertical; */
    /* -webkit-line-clamp: 3; */
    /* max-height: 4.8rem; */
}

.news_update-index .news_read_more_btn-index {
    color: #3366CC;
    /* font-weight: 500; */
    text-decoration: none;
    /* font-size: 1.4rem; */
    /* font-family: 'DIN Next LT Pro Light', sans-serif; */
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news_update-index .news_read_more_btn-index:hover {
    color: #1D4398;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news_update-index .news_grid_layout-index {
        gap: 3rem;
    }
    
    .news_update-index .news_left_section-index {
        gap: 2.5rem;
    }
    
    .news_update-index .news_right_section-index {
        gap: 1.8rem;
    }
}

@media (max-width: 992px) {
    .news_update-index .news_grid_layout-index {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news_update-index .news_left_section-index .news_item-index_featured {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .news_update-index .news_left_section-index .news_image-index {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .news_update-index .news_left_section-index .news_content-index {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .news_update-index {
        padding: 8rem 0 6rem;
    }
    
    .news_update-index .news_header-index {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .news_update-index .news_left_section-index,
    .news_update-index .news_right_section-index {
        gap: 1.5rem;
    }
    
    .news_update-index .news_left_section-index .news_item-index_featured,
    .news_update-index .news_right_section-index .news_item-index_text_only {
        padding: 1.5rem;
    }
    
    .news_update-index .news_content-index h3 a {
        font-size: 1.6rem;
        white-space: normal;
    }
    
    .news_update-index .news_excerpt-index {
        font-size: 1.4rem;
        -webkit-line-clamp: 2;
        max-height: none;
        height: auto;
    }
}

@media (max-width: 576px) {
    .news_update-index {
        padding: 6rem 0 4rem;
    }
    
    .news_update-index .news_grid_container-index {
        /* padding: 0 1.5rem; */
    }
    
    .news_update-index .news_left_section-index .news_item-index_featured,
    .news_update-index .news_right_section-index .news_item-index_text_only {
        padding: 1.2rem;
    }
    
    .news_update-index .news_content-index h3 a {
        font-size: 1.5rem;
    }
    
    .news_update-index .news_date-index {
        font-size: 1.3rem;
    }
    
    .news_update-index .news_excerpt-index {
        font-size: 1.3rem;
    }
    
    .news_update-index .news_read_more_btn-index {
        font-size: 1.3rem;
    }
}
