/* responsive.css - 响应式样式补充 */

/* 关于我们页面特定样式 */
.page-content {
    padding: 130px 0 80px; /* 顶部增加更多间距 */
}

.page-hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://picsum.photos/1440/300?brand") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 60px;
}

.page-hero-title {
    font-family: "书法字体", serif;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
}

.about-content {
    margin-bottom: 50px;
}

.about-text {
    color: #666;
    margin-bottom: 15px;
    text-indent: 2em;
    line-height: 1.8;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.about-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin: 20px 0;
    border: none;
}

.team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-card {
    padding: 20px;
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--color-bean);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--color-ink);
}

.team-position {
    color: var(--color-bronze);
    margin-bottom: 10px;
    font-weight: bold;
}

.team-desc {
    color: #666;
    font-size: 0.9rem;
}

.timeline {
    position: relative;
    margin-top: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-bean);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--color-bronze);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.timeline-time {
    color: var(--color-bronze);
    font-weight: bold;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 1.8rem;
    }
    
    .about-map {
        height: 300px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-content {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
}