/* 正文 */
.container {
    width: calc(100% - 32px);
    max-width: 1400px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-flow: row wrap;
}

        /* 左侧个人介绍卡片 */
        .profile {
            flex: 0 0 220px;
            width: 220px;
            background-color: var(--surface);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 10px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

	.profile:hover {
	    transform: translateY(-5px);
	    box-shadow: var(--shadow-raised);
	}

	.profile h3 {
            color: var(--text-link);
            margin-bottom: 12px;
            text-align: center;
            font-size: 1.4rem;
        }

        .profile p {
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .profile .avatar {
            text-align: center;
            margin-bottom: 15px;
        }

        .profile .avatar img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--avatar-border);
        }

	/* 右侧文章列表区域 */
        .posts-area {
            flex: 1;
            min-width: 0;
            background-color: var(--surface);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-soft);
	    transition: all 0.25s ease;
        }

	.posts-area:hover {
	    transform: translateY(-5px);
	    box-shadow: var(--shadow-raised);
	}

        .posts-area h2 {
            color: var(--text-link);
            margin-bottom: 20px;
            border-left: 4px solid var(--accent);
            padding-left: 12px;
        }

@media (max-width: 768px) {
    .container {
        width: 100%;
        margin: 18px auto;
        padding: 0 12px;
        gap: 16px;
        flex-direction: column;
    }

    .profile {
        width: 100%;
        min-height: 0;
        padding: 16px;
        flex-basis: auto;
    }

    .profile .avatar {
        margin-bottom: 10px;
    }

    .profile .avatar img {
        width: 88px;
        height: 88px;
    }

    .posts-area {
        width: 100%;
        padding: 16px;
    }

    .posts-area h2 {
        font-size: 1.4rem;
    }
}

@media (hover: none) {
    .profile:hover,
    .posts-area:hover {
        transform: none;
    }
}
