/* 新闻详情页面二：科创生态岛 W6 - 三排交错布局 */

/* 基础布局 */
.news-section--office-move {
    padding: 60px 0 0 0;
    background: #fff;
    border-top: 0px solid #f0f0f0;
    border-bottom: 0px solid #f0f0f0; 
    margin-bottom: 0 !important;
}

.news-container--office-move {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* 左文右图比例 */
    grid-template-areas:
        "row1-text row1-media"
        "row2-media row2-text"
        "row3-text row3-media";
    gap: 40px;
    align-items: start;
}

/* 网格区域映射 */
.news-content--row1 { grid-area: row1-text; }
.news-image--row1   { grid-area: row1-media; }
.news-image--row2   { grid-area: row2-media; }
.news-content--row2 { grid-area: row2-text; }
.news-content--row3 { grid-area: row3-text; }
.news-image--row3   { grid-area: row3-media; }

/* 图片容器与适配 */
.news-section--office-move .news-image .image-frame {
    position: relative; /* 确保图片容器可以定位子元素 */
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
    background: #000; /* 保底背景，图片不足或加载中时黑底 */
}

.news-section--office-move .news-image .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 视频适配：在三排交错布局中填满媒体框 */
.news-section--office-move .news-image .image-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

/* 文字样式 */
.news-section--office-move .news-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.news-section--office-move .news-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
}

.news-section--office-move .news-paragraph {
    font-size: 16px;
    line-height: 1.9;
    color: #000;
    margin: 0 0 14px 0;
    text-align: left;
}

/* 中屏：均衡比例与内边距 */
@media (max-width: 1023px) {
    .news-container--office-move {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    .news-section--office-move .news-title { font-size: 32px; }
    .news-section--office-move .news-paragraph { font-size: 15px; }
}

/* 小屏：堆叠顺序保持语义阅读 */
@media (max-width: 767px) {
    .news-section--office-move { padding: 40px 0; }
    .news-container--office-move {
        grid-template-columns: 1fr;
        grid-template-areas:
            "row1-text"
            "row1-media"
            "row2-media"
            "row2-text"
            "row3-text"
            "row3-media";
        gap: 20px;
    }
    .news-section--office-move .news-title { font-size: 28px; margin-bottom: 12px; }
    .news-section--office-move .news-paragraph { font-size: 15px; line-height: 1.8; }
}
