/* Loading Animation Styles for Audio Players */

.play-audio.loading {
    opacity: 0.8;
    cursor: wait;
}

.play-audio .fas {
    transition: all 0.2s ease-in-out;
}

.play-audio .fa-spinner {
    animation: spin 1s linear infinite;
    color: #007cba;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.play-audio.loading .fas {
    color: #007cba;
    text-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

.play-audio.playing {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 4px;
}

.play-audio:hover:not(.loading) {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.play-audio.loading:hover {
    transform: none;
    opacity: 0.8;
}

.play-audio.loading::after {
    content: '';
    position: absolute;
    margin-left: 5px;
    font-size: 0.8em;
    color: #666;
    opacity: 0.7;
}

.page-play-audio.loading,
.single-play-audio.loading {
    pointer-events: none;
}

.page-play-audio .fa-spinner,
.single-play-audio .fa-spinner {
    font-size: 1.2em;
    color: #ff6b6b;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.play-audio.loading-pulse .fas {
    animation: pulse 1.5s ease-in-out infinite;
}

/*
.news-live-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.news-live .news-live-wrapper .news-live-image img {
    width: 100px;
    height: 100px;
    position: relative !important;
    top: unset;
    left: unset;
    width: unset;
    height: unset;
    object-fit: cover;
}

.news-live .news-live-wrapper .news-live-image img::after {
    padding: 0 !important;
    margin: 0 !important;
}

.news-live .news-live-wrapper .news-live-image:after {
    content: '';
    display: block;
    padding-top: 11.77% !important;
}

.news-slider {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

.news-slider > article {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 15.5%;
}

.news-slider > article > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.news .news-item .news-item-image {
    margin-bottom: 5px;
    display: block;
    position: relative;
    width: 100%;
    height: 150px;
}

.podcast-slider {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

article.podcast-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 16.6%;
}
.now-playing-slider {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.now-playing img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    width: 150px !important;
    height: 150px !important;
    position: relative !important;
    top: unset;
    left: unset;
    width: unset;
    height: unset;
    object-fit: cover;
}

.now-playing img::after {
    padding: 0 !important;
    margin: 0 !important;
}

.now-playing .now-playing-slider .img-holder:after {
    padding: 0;
}
.now-playing .now-playing-slider .img-holder:after {
    padding: 0;
}

@media only screen and (max-width: 966px) {
    .podcast-slider, .news-slider, .news-live-wrapper,.now-playing-slider {
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
    }
    .now-playing-slider article {
        width: 100%;
    }
}

.now-playing-slider {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.now-playing-slider article {
    width: 15%;
}
*/

article.play-audio-slider img {
    width: 100%;