/* News List Styles */
.news_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.news_card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.news_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.news_card_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news_card_link:hover {
    text-decoration: none;
}

.news_card_image {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.news_card_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news_card:hover .news_card_image img {
    transform: scale(1.05);
}

.news_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news_badge_announcement {
    background: #1378ce;
    color: #fff;
}

.news_badge_event {
    background: #f97316;
    color: #fff;
}

.news_card_content {
    padding: 25px;
}

.news_card_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.news_card_excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_card_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.news_date {
    font-size: 13px;
    color: #999;
}

.news_read_more {
    font-size: 14px;
    color: #1378ce;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news_card:hover .news_read_more {
    color: #0e5aa8;
}

/* News Detail Styles */
.news_breadcrumb {
    padding: 30px 0 20px 0;
    font-size: 14px;
    color: #666;
}

.news_breadcrumb a {
    color: #1378ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news_breadcrumb a:hover {
    color: #0e5aa8;
    text-decoration: underline;
}

.news_breadcrumb span {
    color: #999;
}

.news_detail {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 40px;
}

.news_detail_header {
    text-align: center;
    margin-bottom: 40px;
}

.news_detail_title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 20px 0;
}

.news_detail_meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.news_meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.news_meta_item svg {
    opacity: 0.7;
}

.news_detail_image {
    width: 100%;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
}

.news_detail_image img {
    width: 100%;
    height: auto;
    display: block;
}

.news_detail_content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news_detail_content .lead {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.news_detail_content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 50px 0 20px 0;
    line-height: 1.3;
}

.news_detail_content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 35px 0 15px 0;
}

.news_detail_content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 25px 0 12px 0;
}

.news_detail_content p {
    margin: 0 0 20px 0;
}

.news_detail_content ul,
.news_detail_content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.news_detail_content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.news_detail_content strong {
    color: #1378ce;
    font-weight: 600;
}

.news_detail_content a {
    color: #1378ce;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.news_detail_content a:hover {
    border-bottom-color: #1378ce;
}

.news_quote {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-left: 4px solid #1378ce;
    padding: 30px 40px;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
}

.news_quote cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.news_feature_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.news_feature_item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.news_feature_item h4 {
    color: #1378ce;
    margin: 0 0 10px 0;
}

.news_feature_item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.news_cta_box {
    background: linear-gradient(135deg, #1378ce 0%, #0e5aa8 100%);
    color: #fff;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin: 50px 0;
}

.news_cta_box h3 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 15px 0;
}

.news_cta_box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0 0 30px 0;
}

.news_cta_button {
    display: inline-block;
    background: #fff;
    color: #1378ce;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.news_cta_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #1378ce;
}

.news_cta_button_secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.news_cta_button_secondary:hover {
    background: #fff;
    color: #1378ce;
}

.news_testimonials {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.news_testimonial {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 20px;
    border-left: 4px solid #1378ce;
}

.news_testimonial p {
    margin: 0 0 10px 0;
    font-style: italic;
    color: #555;
}

.news_testimonial cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.news_specs_table {
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
}

.news_specs_table table {
    width: 100%;
    border-collapse: collapse;
}

.news_specs_table tr {
    border-bottom: 1px solid #eee;
}

.news_specs_table tr:last-child {
    border-bottom: none;
}

.news_specs_table td {
    padding: 15px 20px;
}

.news_specs_table td:first-child {
    width: 30%;
    background: #f8f9fa;
}

.news_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 30px 0;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.news_tag {
    display: inline-block;
    background: #f0f7ff;
    color: #1378ce;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news_tag:hover {
    background: #1378ce;
    color: #fff;
    cursor: pointer;
}

.news_share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 2px solid #eee;
}

.news_share_label {
    font-weight: 600;
    color: #333;
}

.news_share_buttons {
    display: flex;
    gap: 12px;
}

.news_share_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news_share_button:hover {
    background: #1378ce;
    color: #fff;
    transform: translateY(-3px);
}

.related_news {
    margin: 60px 0 40px 0;
}

.related_news_title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
}

.news_grid_small {
    grid-template-columns: repeat(3, 1fr);
}

.news_grid_small .news_card_title {
    font-size: 16px;
    min-height: auto;
}

.news_grid_small .news_card_excerpt {
    display: none;
}

.news_grid_small .news_card_content {
    padding: 20px;
}

/* Sidebar Styles */
.news_sidebar_box {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.news_sidebar_title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.news_sidebar_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news_sidebar_list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.news_sidebar_list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news_sidebar_list a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news_sidebar_list a:hover {
    opacity: 0.7;
}

.news_sidebar_date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.news_sidebar_item_title {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1370px) {
    .news_grid {
        gap: 20px;
    }
    
    .news_detail {
        padding: 40px;
    }
    
    .news_detail_title {
        font-size: 36px;
    }
    
    .news_detail_content h2 {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .news_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news_grid_small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news_detail {
        padding: 30px;
    }
    
    .news_detail_title {
        font-size: 32px;
    }
    
    .news_detail_content {
        font-size: 15px;
    }
    
    .news_detail_content h2 {
        font-size: 26px;
    }
    
    .news_feature_grid {
        grid-template-columns: 1fr;
    }
    
    .news_cta_box {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .news_grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .news_grid_small {
        grid-template-columns: 1fr;
    }
    
    .news_card_content {
        padding: 20px;
    }
    
    .news_card_title {
        font-size: 16px;
        min-height: auto;
    }
    
    .news_card_excerpt {
        font-size: 13px;
    }
    
    .news_badge {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .news_breadcrumb {
        padding: 20px 0 15px 0;
        font-size: 13px;
    }
    
    .news_detail {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .news_detail_header {
        margin-bottom: 30px;
    }
    
    .news_detail_title {
        font-size: 24px;
        margin: 15px 0;
    }
    
    .news_detail_meta {
        gap: 15px;
        font-size: 12px;
    }
    
    .news_detail_image {
        margin: 25px 0;
        border-radius: 15px;
    }
    
    .news_detail_content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .news_detail_content .lead {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .news_detail_content h2 {
        font-size: 22px;
        margin: 35px 0 15px 0;
    }
    
    .news_detail_content h3 {
        font-size: 19px;
        margin: 25px 0 12px 0;
    }
    
    .news_detail_content h4 {
        font-size: 16px;
    }
    
    .news_quote {
        padding: 20px 25px;
        margin: 30px 0;
        font-size: 16px;
        border-radius: 0 15px 15px 0;
    }
    
    .news_feature_grid {
        gap: 15px;
        margin: 20px 0;
    }
    
    .news_feature_item {
        padding: 20px;
        border-radius: 15px;
    }
    
    .news_cta_box {
        padding: 30px 20px;
        margin: 35px 0;
        border-radius: 20px;
    }
    
    .news_cta_box h3 {
        font-size: 22px;
    }
    
    .news_cta_box p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .news_cta_button {
        display: block;
        margin: 10px 0;
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .news_testimonials {
        gap: 15px;
    }
    
    .news_testimonial {
        padding: 20px;
        border-radius: 15px;
    }
    
    .news_specs_table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .news_specs_table td:first-child {
        width: 40%;
    }
    
    .news_tags {
        gap: 8px;
        margin: 30px 0 20px 0;
        padding-top: 20px;
    }
    
    .news_tag {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .news_share {
        flex-wrap: wrap;
        gap: 12px;
        padding: 20px 0;
    }
    
    .news_share_label {
        width: 100%;
        font-size: 14px;
    }
    
    .news_share_button {
        width: 36px;
        height: 36px;
    }
    
    .related_news {
        margin: 40px 0 30px 0;
    }
    
    .related_news_title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .news_sidebar_box {
        padding: 25px 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .news_sidebar_title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .news_sidebar_list li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .news_sidebar_date {
        font-size: 11px;
    }
    
    .news_sidebar_item_title {
        font-size: 13px;
    }
    
    .point {
        margin: 20px 0;
        padding-bottom: 20px;
    }
    
    .point .to_prev,
    .point .to_next {
        font-size: 14px;
    }
}
