.podcast-swiper-sec {
    overflow: hidden;
}

.podcast-swiper-sec:has(.type1) h5 {
    color: var(--color-white);
}

.podcast-swiper-sec:has(.type1) {
    padding-top: 0;
    margin-top: -83px;
    z-index: 100;
}

.podcast-item {
    position: relative;
    flex-shrink: 0;
    width: 295px;
    border-radius: 16px;
    margin-bottom: 40px;
    margin-top: 16px;
}

.podcast-item .img-wrapper {
    position: relative;
    height: 166px;
    border: 3px solid transparent;
    background: linear-gradient(90deg, #F4F4EC -25.28%, #C39454 24.83%, #C39454 100%);
    border-radius: 16px;
    overflow: hidden;
}

.podcast-item .img-wrapper img,
.podcast-item .img-wrapper iframe,
.podcast-item .img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-item .img-wrapper .play-button {
    position: absolute;
    right: 9px;
    bottom: 8px;
    color: var(--color-white);
    transition: var(--td-3);
    display: inline-block;
    line-height: 1;
}

.podcast-item .img-wrapper .play-button:hover {
    color: var(--color-primary);
}


/* hide original content inside item */
.podcast-item .content {
    display: none;
}

.podcast-hover-card {
    position: fixed;
    width: 315px;
    background: var(--color-white);
    border-radius: 12px;
    z-index: 9999;
    opacity: 0;
    /* transform: translateY(12px); */
    transform: scale(0.9);
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
    transition: opacity .2s ease, transform .1s ease;
    pointer-events: none;
    overflow: hidden;
}

.podcast-hover-card.active {
    opacity: 1;
    pointer-events: auto;
    /* transform: translateY(0); */
    transform: scale(1);
}

.podcast-hover-card .img-box {
    position: relative;
    width: 100%;
    height: 166px;
    overflow: hidden;
}

.podcast-hover-card .img-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: var(--color-gradient);
    z-index: -1;
    border-radius: 16px;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.podcast-hover-card .img-box img,
.podcast-hover-card .img-box iframe,
.podcast-hover-card .img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-hover-card .inner-content {
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.podcast-hover-card .inner-content * {
    margin-bottom: 0;
}

.podcast-hover-card .inner-content p {
    font-size: 14px;
}

.podcast-swiper-sec .swiper-track {
    padding-left: calc((100vw - var(--container)) / 2);
}

.podcast-swiper-sec .swiper-track:not(.type1)::before {
    content: "";
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.podcast-swiper-sec .swiper-track:not(.type1)::after {
    content: "";
    width: calc((100vw - var(--container)) / 2);
    height: 100%;
    display: inline-block;
    min-width: calc((100vw - var(--container)) / 2);
    height: 166px;
    pointer-events: none;
}

.podcast-swiper-sec .scroll-thumb {
    width: 225px;
}

@media (min-width:992px) {
    .podcast-swiper-sec .swiper-track.type1 {
        padding-left: 0;
    }
}

@media (max-width: 991.98px) {
    .podcast-swiper-sec .container:has(.swiper-wrapper) {
        padding-left: 0;
        padding-right: 0;
    }

}