.latest-news-section {
    padding: 50px 0;
    background: #ffffff;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.latest-news-container {
    width: 100%;
    max-width: 1536px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
}

.latest-news-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}

/* 垂直布局 - 标题和内容上下分布 */
.latest-news-flex-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    /* 居中对齐 */
}

.latest-news-header-box {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: left;
    margin-bottom: 40px;
    width: 100%;
}

.latest-news-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-title {
    color: #333;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #323232;
    border: 2px solid #323232;
    border-radius: 50%;
    font-size: 18px;
    margin-left: 10px;
}

.news-subtitle {
    font-size: 1.2em;
    color: #666;
    margin: 10px 0 0 0;
    text-align: left;
    font-weight: 300;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.news-card {
    border: 1px solid #989898;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 160px;
}

.news-content {
    display: flex;
    height: 100%;
}

.news-image {
    flex: 0 0 40%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    /* 图片上下无间隙 */
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保持正方形比例 */
    border-radius: 10px;
    display: block;
}

.news-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #ccc;
    border-radius: 10px 0 0 10px;
}

.news-text {
    flex: 0 0 60%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-subtitle-text {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: normal;
    /* 不加粗 */
}

.news-title-text {
    font-size: 1em;
    margin: 0;
    color: #333;
    line-height: 1.4;
    font-weight: normal;
    /* 不加粗 */
}

/* 响应式设计 */
@media (max-width: 1500px) {
    .latest-news-container {
        max-width: 1400px;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 1200px) {
    .latest-news-container {
        max-width: 1100px;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 1024px) {
    .latest-news-section {
        max-width: 90%;
    }

    .latest-news-container {
        max-width: 950px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card {
        height: 180px;
    }

    .news-text {
        padding: 10px;
    }

    .news-subtitle-text {
        font-size: 0.85em;
    }

    .news-title-text {
        font-size: 0.95em;
    }

    .arrow-circle {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 911px) {
    .latest-news-section {
        max-width: 85%;
    }

    .latest-news-container {
        max-width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        height: 160px;
    }

    .arrow-circle {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .news-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .latest-news-section {
        padding: 30px 0;
    }

    .latest-news-header {
        justify-content: space-between;
    }

    .latest-news-header-box {
        padding-left: 0;
    }

    .news-subtitle {
        display: none;
    }

    .news-text {
        flex: 0 0 auto;
        padding: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .news-subtitle-text {
        font-size: 0.8em;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .news-title-text {
        font-size: 0.9em;
        line-height: 1.3;
    }

    .news-title {
        font-size: 1.5em;
    }

    .arrow-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .news-title {
        font-size: 1.3em;
    }
}