/* استایل‌های پایه برای Swiper */
.podcast-slider-wrapper {
    position: relative;
}

.swiper.podcast-slider-swiper{
    width: 100%;
    height: 100%;
    padding: 15px 4px !important;
}

.podcast-slider-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-slider-swiper .slider-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.podcast-slider-swiper .slider-item-link:hover {
    transform: translateY(-5px);
}

.podcast-slider-swiper .slider-item-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.podcast-slider-swiper .slider-item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.podcast-slider-swiper .playonline_badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.podcast-slider-swiper .film_cat_title {
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    line-height: 1.4;
}

/* Navigation buttons */
.podcast-slider-swiper .podcast-button-next{
    position: absolute;
    right: 0;
    top: 40%;
    z-index: 10;
}
.podcast-slider-swiper .podcast-button-prev{
    position: absolute;
    left: -32px;
    top: 40%;
    z-index: 10;
}
.podcast-slider-swiper .podcast-button-next,
.podcast-slider-swiper .podcast-button-prev {
    color: #888888;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor:pointer
}

.podcast-slider-swiper .podcast-button-next:after,
.podcast-slider-swiper .podcast-button-prev:after {
    font-size: 18px;
}
.podcast-slider-swiper .podcast-button-next:hover,
.podcast-slider-swiper .podcast-button-prev:hover {
    color: #c3c3c3;
}
/* Pagination */
.podcast-slider-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
}

.podcast-slider-swiper .swiper-pagination-bullet-active {
    background: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .podcast-slider-swiper .podcast-button-next,
    .podcast-slider-swiper .podcast-button-prev {
        display: none;
    }
}