.podcast-modal {
    max-width: 90vw !important;
}

.podcast-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.podcast-header{
    height: 30vw;
    position: relative;
    overflow: hidden;
    display: block;
}

.header-text-container{
    position: relative;
    line-height: 9vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.header-text-container h1 {
    font-size: 5vw !important;

}

.text-animate{
    animation-name: text;
}

.outline-container h1{
    font-family: 'Poppins', sans-serif !important;
}
.outline-container{
    position: relative;
}

/* .solid{
    z-index: 10;
} */

.outline{
    position: absolute;
    z-index: 300;
    -webkit-text-stroke-width: 0.1vw;
    -webkit-text-stroke-color: var(--bs-body-color);
    color: transparent !important;
}

.solid {
    color:  var(--bs-body-color);
}


.podcast-header img{
    width: 80%;
    position: absolute;
    top: 50%;
    z-index: 100;
    transform: translateY(-50%);
    filter: contrast(0.4);
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    right: 0%;
}
[data-bs-theme="dark"] .podcast-header img{
    filter: brightness(0.5);
}

.image-animate{
    animation-name: slide;
}


.episode-container{
    margin-top: 50px;
    width: 50%;
}

.episode{
    border-bottom: 1px solid lightgray;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
}
.episode img{
    max-width: 130px;
    width: 15%;
    padding: 10px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}
.episode-text{
    width: 80%;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.episode-text p{
    color: slategray;
}

.episode-text h3{
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 100;
}
.guide-next-video{
    width: 300px;
}
.guide-next-video a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid lightgray;
}

.guide-next-video img{
    width: 150px;
    margin: 10px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

@media only screen and (max-width: 1300px) {
    .episode-container{
        width: 70%;
    }
}

@media only screen and (max-width: 900px) {
    .outline{
        -webkit-text-stroke-width: 1.5px;
    }
    .podcast-header img{
        width: 100%;
    }

    .header-text-container{
        position: relative;
        font-size: 4vw !important;
        line-height: 8vw;
        padding-left: 2vw;
    }

    .episode-container{
        width: 90%;
    }
    .episode {
        text-align: center;
        flex-direction: column;
    }
    .episode img{
        width: 100px;
    }
}

