/* 新闻详情页面四：校企合作授牌 - 三排交错布局（左文右图 → 左图右文 → 左文右图） */

/* 基础布局，与前几篇保持一致的留白与宽度 */
.news-section--cooperation {
    padding: 60px 0 0 0;
    background: #fff;
    border-top: 0px solid #f0f0f0;
    border-bottom: 0px solid #f0f0f0; 
    margin-bottom: 0 !important;
}

.news-container--cooperation {
    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--cooperation .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--cooperation .news-image .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 文字样式（与其它新闻统一） */
.news-section--cooperation .news-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

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

.news-section--cooperation .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--cooperation {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    .news-section--cooperation .news-title { font-size: 32px; }
    .news-section--cooperation .news-paragraph { font-size: 15px; }
}

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