.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 50px;
}

/* 作者信息 */
.author {
    background: white;
    padding: 20px 0;
    border-radius: 12px;
    margin-bottom: 30px;
    margin-top: 20px;
    display: flex;
    gap: 40px;
}

.author-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.author-info {
    display: flex;
    flex-direction: column;
    height: auto;
}



.author-info a {
    font-size: 26px;
    font-weight: bold;
    color: #111;
    text-decoration: none;
}

.author-info p {
    color: #848383;
    margin-top: 10px;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}


.latest-blog-header{
    border-bottom: 4px solid #cc0000;
    margin-bottom: 20px;
}

.latest-blog-header .section-title {
    font-size: 22px;
    font-family: Arial;
    font-weight: 700;
    color: #262626;
}

/* 博客卡片 */
.blog-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.blog-card {
    background: white;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 5px;
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-date {
    margin-top: 2px;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: Arial;
    color: #6b6b6b;
    line-height: 22px;
}

.blog-title {
    font-size: 14px;
    font-family: Arial;
    color: #5a5959;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-title:hover{
    color: #1e6ffa;
}