/* =Podcasts
-----------------------------------------------------*/
#podcasts {
    color: #fff;
    padding: 30px 40px 40px;
    box-sizing: border-box;
    background: linear-gradient(-45deg, var(--blue), #e73c7e, #23a6d5, #23d5ab);
    background-size: 300% 300%;
    animation: gradient 12s ease infinite;
    overflow: hidden;
}
#podcasts article .img-container {
    margin-bottom: 0;
}
#podcasts .cat-heading {
    margin-bottom: 20px;
}
#podcasts .cat-heading h2 a {
    color: #fff;
}
#podcasts .cat-heading h2 {
    background: none;
}
#podcasts .cat-heading span {
    color: #fff;
}
#podcasts .cat-heading:after {
    left: 195px;
    width: calc(100% - 195px);
    z-index: 0;
}
#podcasts .pod-swiper {
    width: calc(100% + 80px);
    margin-left: -40px;
    padding: 0 40px;
}
#podcasts article {
    width: calc((100% - 120px)/4);
    margin-right: 40px;
}
#podcasts.inner-tag article {
    width: calc((100% - 120px)/3);
}
.pod-swiper .swiper-button-next, .pod-swiper .swiper-button-prev {
    right: 22px;
    background-color: #f7f7f7;
    border-radius: 100%;
    width: 38px;
    height: 38px;
    transition: background-color 0.5s ease;
    margin-top: -19px;
}
.pod-swiper .swiper-button-next:hover, .pod-swiper .swiper-button-prev:hover {
    background-color: #b5b5b5;
}
.pod-swiper .swiper-button-next:after, .pod-swiper .swiper-button-prev:after {
    font-size: 17px;
    font-weight: bold;
    color: #222
}
.pod-swiper .swiper-button-disabled {
    opacity: 0 !important;
}
.pod-swiper .swiper-button-prev {
    left: 22px;
    right: auto;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@media screen and (max-width:1180px) {
    #podcasts {
        padding-left: 30px;
        padding-right: 30px;
    }
    #podcasts article, #podcasts.inner-tag article {
        width: calc((100% - 60px)/3);
    }
}
@media screen and (max-width:980px) {
    #podcasts {
        padding: 20px 30px 30px;
        margin-bottom: 45px;
    }
    #podcasts .cat-heading {
        margin-bottom: 10px;
    }
    #podcasts .pod-swiper {
        width: calc(100% + 60px);
        margin-left: -30px;
        padding: 0 30px;
    }
    #podcasts article {
        margin-right: 30px;
    }
    .pod-swiper .swiper-button-next, .pod-swiper .swiper-button-prev {
        right: 13px;
        width: 34px;
        height: 34px;
        margin-top: -17px;
    }
    .pod-swiper .swiper-button-next:after, .pod-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    .pod-swiper .swiper-button-prev {
        left: 13px;
    }
}
@media screen and (max-width:730px) {
    #podcasts {
        padding: 15px 20px 20px;
    }
    #podcasts .pod-swiper {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0 20px;
    }
    #podcasts article {
        margin-right: 20px;
    }
    .pod-swiper .swiper-button-next, .pod-swiper .swiper-button-prev {
        right: 6px;
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }
    .pod-swiper .swiper-button-prev {
        left: 6px;
    }
}
@media screen and (max-width:420px) {
    #podcasts article {
        width: 100%;
    }
}