/* 作家中心公共样式 */
.writer-home {
    background: #faf9f5;
}
.banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    gap: 2rem;
}
.content-area {
    flex: 2;
}
.sidebar {
    flex: 1;
}
/* 诗人特有样式 */
.poet-home .poem-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}
/* 作家主页、评论家主页类似，可分别定义 */