:root {

   --font-1 : "Public Sans", sans-serif;
    --font-2 : "DM Serif Display", serif;

    /* monospace
    */
    --font-mono : Consolas, "Andale Mono", Courier, "Courier New", monospace;
     --black: #000000;
    --white: #ffffff;
    --gray-dark: #222222;
    --gray-light: #f5f5f5;
    --text-gray: #888888;
}


     .text-image-module {
    font-family: "Public Sans", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5px;
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* 修改为顶部对齐 */
    gap: 40px;
    line-height: 1.4;
}

.text-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 30px; /* 增加上下padding */
    border-radius: 8px 8px 0 0;
    z-index: 1;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.text-content p {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.responsive-image-container {
    width: 40%;
    height: 500px;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    position: relative;
    top: -60px;
margin-bottom: -60px;
}

.responsive-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* 完全保持您原有的响应式设置 */
@media (max-width: 1024px) {
    .text-content p {
        font-size: 1.8rem;
    }
}

@media (max-width: 900px) {
    .text-content p {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .text-image-module {
        flex-direction: column;
        gap: 20px;
    }
    
    .text-content,
    .responsive-image-container {
        width: 100%;
    }
    
    .text-content {
        padding: 20px; /* 恢复原有padding */
    }
    
    .responsive-image-container {
        height: 300px;
        top: 0; /* 取消上移 */
        margin-bottom: 0; /* 取消补偿 */
    }
    
    .text-content h2 {
        font-size: 1.5rem;
    }
    
    .text-content p {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .responsive-image-container {
        height: 250px;
        border-radius: 0 0 6px 6px;
    }
    
    .text-content {
        padding: 15px;
    }
    
    .text-content h2 {
        font-size: 1.3rem;
    }
    
    .text-content p {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

.responsive-image-container:hover img {
    transform: scale(1.05);
}

/* what we do  */
 /* Font Family */
    :root {
        --font-primary: "Public Sans", sans-serif;
    }
    
    /* Main Container */
    .mission-container {
       max-width: 1200px;
        padding: 80px 0;
        background-color: #fff;
        margin: 0 auto;
    }
    
    .mission-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Content Layout - Flex by default */
    .mission-content {
        display: flex;
        gap: 60px;
        align-items: center;
    }
    
    /* Image Column - 50% width */
    .mission-image-col {
        flex: 1;
    }
    
    .mission-image-wrapper {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .mission-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .mission-image:hover {
        transform: scale(1.02);
    }
    
    /* Text Column - 50% width */
    .mission-text-col {
        flex: 1;
    }
    
    /* Title Styles */
    .mission-pretitle {
        font-family: var(--font-primary);
        font-weight: 700;
        color: #2a2a2a;
        font-size: 2.5rem; /* Base font size */
        line-height: 1.2;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .mission-pretitle:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #d4a5a5;
    }
    
    /* Text Content Styles */
    .mission-text-content {
        font-family: var(--font-primary);
    }
    
    .mission-text-content p {
        font-size: 2rem;
        line-height: 1.2;
        color: #555;
        margin-bottom: 20px;
        width: 400px;
    }
    
    /* Responsive Breakpoints */
    @media (max-width: 992px) {
        .mission-content {
            gap: 40px;
        }
        
        /* Adjust title size for medium screens */
        .mission-pretitle {
            font-size: 2.2rem; /* Slightly smaller */
        }
    }
    
    @media (max-width: 768px) {
        .mission-content {
            flex-direction: column;
            gap: 30px;
        }
        
        .mission-image-col,
        .mission-text-col {
            width: 100%;
        }
        
        /* Adjust title size for tablets */
        .mission-pretitle {
            font-size: 2rem;
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .mission-container {
            padding: 60px 0;
        }
        
        /* Adjust title size for mobile */
        .mission-pretitle {
            font-size: 1.8rem;
            padding-bottom: 10px;
        }
        
        .mission-text-content p {
            font-size: 1.6rem;
        }
    }



    /* person */

/* 主容器 - 限制宽度为1200px */
.person-module {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    color: var(--black);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    /* height: 600px; */
}

/* 主容器布局 */
.person-container {
    display: flex;
    position: relative;
    min-height: 800px;
    margin-top: 50px;
}

/* 图片容器设置 - 缩小宽度为40% */
.person-image-wrapper {
    flex: 0 0 40%; /* 从50%缩小到40% */
    position: relative;
    overflow: hidden;
    background-color: var(--gray-dark);
}

.person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.9;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    mix-blend-mode: multiply;
}

/* 内容区域 - 向左移动并确保不被遮挡 */
.person-content {
    flex: 0 0 60%; /* 从50%增加到60% */
    padding: 40px 40px 40px 30px; /* 左内边距减小 */
    margin-left: -50px; /* 关键：向左移动50px */
    background-color: var(--white);
    z-index: 2; /* 确保在图片上方 */
    /* overflow-y: auto; */
    max-height: 500px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.05); /* 添加轻微阴影增强层次感 */
}

/* 标题样式 */
.person-header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 10;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.person-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.person-name {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.title-divider {
    width: 60px;
    height: 1px;
    background-color: var(--black);
    margin: 20px 0;
}

/* 人物简介 */
.person-bio {
    margin-bottom: 30px;
}

.person-bio p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--gray-dark);
}

.person-details {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.person-details li {
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

.person-details li:last-child {
    border-bottom: none;
}

.person-details strong {
    font-weight: 600;
    color: var(--black);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .person-content {
        padding: 30px 30px 30px 20px;
        margin-left: -30px;
    }
    
    .person-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .person-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .person-image-wrapper {
        flex: 0 0 600px;
        width: 100%;
    }
    
    .person-content {
        flex: 1;
        width: calc(100% - 40px); /* 留出边距 */
        margin-left: 0;
        padding: 30px 20px;
        max-height: none;
        box-shadow: none;
    }
    
    .person-header {
        position: static;
    }
}

@media (max-width: 576px) {
    .person-image-wrapper {
        flex: 0 0 350px;
    }
    
    .person-content {
        padding: 25px 15px;
        width: calc(100% - 30px);
    }
    
    .person-name {
        font-size: 1.8rem;
    }
    
    .person-subtitle {
        font-size: 0.8rem;
    }
}
