* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft Yahei", system-ui, sans-serif;
    background: #ffffff;
}
.page-wrap {
    min-height: 100vh;
}
.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* 左侧红色栏样式 */
.text-column {
    background-color: #c41e25;
    color: #ffffff;
    padding: 44px 40px;
}
.header-logo {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.95;
}
.text-column h1 {
    font-size: 44px;
    font-weight: normal;
    margin-bottom: 36px;
}
.text-column h2 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom: 40px;
}
.article-content p {
    font-size: 18px;
    line-height: 1.88;
    margin-bottom: 24px;
}

/* 右侧黑色图片网格 */
.gallery-column {
    background-color: #000000;
    padding: 8px;
}
.gallery-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 移动端自适应布局 */
@media (max-width:960px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .text-column h1 {
        font-size: 32px;
    }
    .text-column h2 {
        font-size: 30px;
    }
    .article-content p {
        font-size: 16px;
    }
}