/* Team Filter Styles */
.team-listing__item.filtered-hidden {
    opacity: 0;
    pointer-events: none;
}

.team-listing__item {
    opacity: 1;
}

.no-results-message {
    display: none;
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 8px;
    margin: 20px 0;
}

.no-results-message.show {
    display: block;
}

.no-results-message h3 {
    color: #5e0d6E;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.no-results-message p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.filter__item input[type="radio"]:checked + .filter__label {
    color: #5e0d6E;
    font-weight: bold;
}

.filter__label {
    cursor: pointer;
    display: block;
    color: #2d2d2d;
}

.filter__label:hover {
    color: #5e0d6E;
}

.filter__mobile.btn {
    background-color: #5e0d6E;
    border-color: #5e0d6E;
    color: #fff;
}

.filter__mobile.btn:hover,
.filter__mobile.btn:focus {
    background-color: #4a0b58;
    border-color: #4a0b58;
}

@media (max-width: 991px) {
    /* Force display the mobile filter when active */
    sidebar.filter__mobile--active > .filter {
        display: block !important;
    }
}

.filter--mobile-open {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 #a9a9a9;
}

.filter--mobile-closed {
    display: none !important;
}