/* 首页信息区新排版样式 */
main[role="main-home-wrapper"] .info-content {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

main[role="main-home-wrapper"] .quote-section {
    flex: 1;
    text-align: right; /* 左侧内容靠右对齐 */
    margin-bottom: 0; /* 移除之前的 margin */
}

main[role="main-home-wrapper"] .main-slogan {
    font-size: 24px !important;
    color: #333 !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    letter-spacing: 1px !important;
}

main[role="main-home-wrapper"] .sub-quote {
    font-size: 16px !important;
    color: #888 !important;
    font-style: italic !important;
    font-weight: 300 !important;
    font-family: 'Georgia', serif !important;
    line-height: 1.6 !important;
}

/* 垂直分割线 */
main[role="main-home-wrapper"] .divider-line {
    width: 2px;
    height: 80px; /* 固定高度 */
    background: linear-gradient(to bottom, #fb5353, #ff6b6b);
    margin: 0;
    border-radius: 2px;
    flex-shrink: 0; /* 防止被压缩 */
}

main[role="main-home-wrapper"] .profile-section {
    flex: 1;
    text-align: left; /* 右侧内容靠左对齐 */
    margin-top: 0; /* 移除之前的 margin */
}

main[role="main-home-wrapper"] .author-info {
    margin-bottom: 10px;
}

main[role="main-home-wrapper"] .author-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-right: 10px;
}

main[role="main-home-wrapper"] .author-role {
    font-size: 13px;
    background-color: #f0f2f5;
    color: #666;
    padding: 3px 10px;
    border-radius: 20px;
    vertical-align: 2px;
    display: inline-block;
}

main[role="main-home-wrapper"] .author-desc {
    font-size: 15px !important;
    color: #555 !important;
    margin-bottom: 15px !important;
    font-weight: 400 !important;
}

main[role="main-home-wrapper"] .info-tags {
    display: flex;
    justify-content: flex-start; /* 靠左排列 */
    gap: 10px;
    flex-wrap: wrap;
}

main[role="main-home-wrapper"] .tag-item {
    font-size: 13px;
    color: #777;
    background: #fff;
    border: 1px solid #eee;
    padding: 4px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

main[role="main-home-wrapper"] .tag-item:hover {
    color: #fb5353;
    border-color: #fb5353;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(251, 83, 83, 0.15);
}

main[role="main-home-wrapper"] .tag-item i {
    margin-right: 4px;
    color: #fb5353;
}

/* 响应式优化：小屏幕恢复上下布局 */
@media (max-width: 768px) {
    main[role="main-home-wrapper"] .info-content {
        flex-direction: column;
        gap: 20px;
    }

    main[role="main-home-wrapper"] .quote-section {
        text-align: center;
    }

    main[role="main-home-wrapper"] .divider-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, #fb5353, #ff6b6b);
    }

    main[role="main-home-wrapper"] .profile-section {
        text-align: center;
    }

    main[role="main-home-wrapper"] .info-tags {
        justify-content: center;
    }
}