/* ===== 最新动态区域 ===== */
.latest-content-section {
    padding: 60px 24px;
    background: var(--slate-50);
}

.latest-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.latest-content-header {
    text-align: center;
    margin-bottom: 40px;
}

.latest-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-500);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(0, 104, 204, 0.08);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.latest-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
}

.latest-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* 左侧大图 */
.latest-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    background: var(--white);
    aspect-ratio: 16 / 10;
}

.latest-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
}

/* 右侧列表 */
.latest-list-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    max-height: 500px;
    overflow-y: auto;
}

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

.latest-item {
    padding: 0;
    border-bottom: 1px solid var(--slate-100);
    transition: background 0.2s ease;
}

.latest-item:last-child {
    border-bottom: none;
}

.latest-item a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.latest-item a:hover {
    background: var(--slate-50);
    color: var(--slate-900);
}

.latest-item.active a {
    color: var(--blue-500);
    background: rgba(0, 104, 204, 0.06);
    border-left-color: var(--blue-500);
    font-weight: 600;
}

/* 滚动条美化 */
.latest-list-wrap::-webkit-scrollbar {
    width: 4px;
}
.latest-list-wrap::-webkit-scrollbar-track {
    background: var(--slate-100);
    border-radius: 4px;
}
.latest-list-wrap::-webkit-scrollbar-thumb {
    background: var(--slate-300);
    border-radius: 4px;
}

/* ===== 移动端响应式 ===== */
@media (max-width: 768px) {
    .latest-content-section {
        padding: 40px 16px;
    }

    .latest-title {
        font-size: 22px;
    }

    .latest-content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .latest-image-wrap {
        aspect-ratio: 16 / 9;
    }

    .latest-list-wrap {
        max-height: 360px;
    }

    .latest-item a {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .latest-content-section {
        padding: 30px 12px;
    }

    .latest-title {
        font-size: 20px;
    }

    .latest-list-wrap {
        max-height: 280px;
    }

    .latest-item a {
        padding: 10px 14px;
        font-size: 13px;
    }
}