* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft Yahei", system-ui, sans-serif;
    background: #ffffff;
}
.page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ========== 顶部黑色标题栏（移至最上方） ========== */
.page-header-title {
    background-color: #000000;
    padding: 32px 40px;
}
.page-header-title h2 {
    color: #fff;
    font-size: 40px;
    font-weight: normal;
}

/* 主体左右布局 */
.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
}

/* 左侧图片区域布局 */
.gallery-column {
    padding: 8px;
}
.gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 100%;
}
/* 主海报：取消拉伸，完整显示原图比例 */
.gallery-left-big img {
    width: 100%;
    height: auto;
    /* 删除 object-fit:cover，图片不会裁切拉伸 */
    display: block;
}
.gallery-right-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}
.grid-row img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右侧红色文字栏 */
.text-column {
    background-color: #c41e25;
    color: #ffffff;
    padding: 44px 40px;
}
.header-logo {
    text-align: right;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}
.article-content p {
    font-size: 18px;
    line-height: 1.88;
    margin-bottom: 26px;
}

/* 移动端自适应 */
@media (max-width:960px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
    .header-logo {
        text-align: left;
    }
    .page-header-title h2 {
        font-size: 28px;
    }
    .article-content p {
        font-size: 16px;
    }
}