/* ===== ARTIST GRID ===== */
.artist-grid .artist-col {
    display: flex;
    justify-content: center;
}
.artist-thumb img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.2s ease;
}
.artist-thumb img:hover {
    transform: scale(1.05);
}
.artist-card {
    text-align: center;
    max-width: 200px;
}
.artist-name a {
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== PAGINATION ===== */
.pagination-container .btn {
    border-radius: 4px;
    min-width: 40px;
}

/* ===== SIDEBAR ===== */
#rah-sidebar {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: inherit;
    padding: 0;
}
#rah-sidebar .widget-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.artist-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.artist-cat-list li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}
.cat-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    border-radius: 50%;
}
.artist-subcat {
    list-style: none;
    padding-left: 16px;
    margin-top: 4px;
}
.artist-subcat li {
    font-size: 14px;
}
#rah-sidebar a {
    color: inherit;
    text-decoration: none;
}
#rah-sidebar a:hover {
    text-decoration: underline;
}

/* ===== CONTAINER ===== */
.rah-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}