/* Tách từ taxonomy-performer.php (trước đây nằm inline trong <style>) */

.performer-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.performer-post-item {
    background: #222;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s;
}
.performer-post-item:hover {
    box-shadow: 0 6px 20px rgba(102,126,234,0.18);
}
.performer-post-item img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}
.performer-post-item h3 {
    font-size: 1em;
    color: #ff4458;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}
.pagination {
    margin: 30px 0;
    text-align: center;
}
/* Performer header styles (modern) */
.performer-header {
    background: linear-gradient(269deg, rgb(27 27 27) 0%, rgba(20, 20, 20, 1) 100%);
    padding: 28px 0;
    border-radius: 8px;
}
.performer-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.performer-avatar-wrap {
    flex: 0 0 auto;
}
.performer-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    background: #111;
}
.performer-info {
    flex: 1 1 auto;
}
.performer-title {
    font-size: 1.9rem;
    margin: 0 0 6px 0;
    color: #fff;
    letter-spacing: 0.6px;
}
.performer-desc {
    color: #cfcfcf;
    max-width: 800px;
    margin-top: 6px;
    line-height: 1.5;
}
@media (max-width: 720px) {
    .performer-header-inner { flex-direction: column; text-align: center; }
    .performer-avatar-img { width: 100px; height: 100px; }
    .performer-title { font-size: 1.4rem; }
}
