/* 画家风采页面样式 */
.artists-page {
    padding: 0;
}

/* 英雄区域样式 */
.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.7);
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: rgba(0,0,0,0.5);
    border-radius: 8px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* 画家卡片网格 */
.artists-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* 画家卡片样式 */
.artist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.artist-info h3 {
    color: #e62129;
    margin-bottom: 0.5rem;
}

.artist-title {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e62129;
}

/* 作品展示 */
.artist-works {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.artist-works img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.artist-works img:hover {
    transform: scale(1.05);
}

/* 创作故事 */
.artist-story {
    padding: 2rem;
    border-top: 1px solid #eee;
}

.artist-story h4 {
    color: #e62129;
    margin-bottom: 1rem;
}

.story-preview {
    color: #666;
    margin-bottom: 1rem;
}

.full-story {
    display: none;
    color: #666;
    margin-top: 1rem;
}

.read-more {
    background: none;
    border: none;
    color: #e62129;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.read-more:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }

    .artist-header {
        flex-direction: column;
        text-align: center;
    }

    .artist-works {
        padding: 0 1rem 1rem;
    }
} 