
.archive-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.archive-item {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--hover-overlay);
    transition: all 0.3s ease;
}

.archive-item:hover {
    padding-left: 10px;
    background-color: var(--hover-overlay);
}

.archive-date {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: var(--accent-color);
    width: 120px;
    flex-shrink: 0;
    opacity: 0.8;
}

.archive-event {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 400;
}

/* 针对小屏幕的调整 */
@media (max-width: 600px) {
    .archive-item {
        flex-direction: column;
        gap: 4px;
    }
    .archive-date {
        font-size: 0.75rem;
        width: auto;
    }
}

.about-profile {
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    gap: 28px;
    margin: 24px 0;
}

.about-avatar {
    width: 160px;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    flex-shrink: 0; /* 防止头像被挤压 */
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-info {
    line-height: 1.6;
}

/* === 手机端适配 === */
@media (max-width: 600px) {
    .about-profile {
        flex-direction: column; /* 变为上下垂直排列 */
        align-items: flex-start; /* 左对齐 (如果喜欢居中可改为 center) */
        gap: 1.5rem;
    }

    .about-avatar {
        /* 手机端稍微缩小一点头像，或者保持原样 */
        width: 120px;
        height: 120px;
        
        /* 如果希望头像在手机端居中显示，解开下面这行的注释 */
        margin: 0 auto;
    }
    
    /* 如果希望头像居中，但文字保持左对齐，需要配合 align-items: center */
    /* .about-profile {
        align-items: center; 
    }
    .about-info {
        width: 100%; 
        text-align: left;
    } 
    */
}