/* ESTILOS DE LA PORTADA */
.wrapper{
    width: 80%;
    margin: 0  auto;
}

section:not(:first-child) {
    padding: 0;
}

#portada{
    padding: 8em 0 0 0;
}

#listaPodcast{
    padding: 1em 0 1em 0;
}

#st-1{
    z-index: 1 !important;
}

#portada #imgPortada{
    background-image: url(../images/listadopodcast/podcast.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

#portada h1{
    color: white;
    text-align: center;
}
/* FIN DE ESTILOS DE LA PORTADA */

#tituloPodcast{
    margin-bottom: 0.5em;
    text-align: center;
}

#detallesPodcast{
    margin: 0 auto;
    width: 70%;
    height: 100%;
    background: rgb(245, 245, 245);
}

.detallePodcast>p{
    margin: 0;
    padding: 1em;
    font-size: large;
}

.detallePodcast>p, .detallePodcast span{
    margin-left: 1em;
}

#btnEscuchar{
    width: 70%;
    margin: 2em auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#btnEscuchar button{
    padding: 1em 0 1em 0;
    width: 100%;
    color: white;
    font-weight: bold;
    background-color: #0e95a8;
    transition: transform .3s;
}

#btnEscuchar button:hover{
    background-color: rgb(49, 62, 91);
    color: whitesmoke;
    transform: scale(1.1);
}

#btnCompartir{
    padding: 2em;
}

#btnCompartir p{
    margin: 0 1em 0 0;
}

#escuchaEnWebs div{
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px){
    section{
        padding: 0 !important;
    }
}

@media (max-width: 726px){
    #cabeceraPodcast{
        flex-direction: column !important
    }

    #videoPodcast{
        width: 80% !important;
    }

    #infoPodcast{
        width: 100% !important;
        margin-top: 1em;
        display: flex;
        flex-direction: column;
    }

    #detallesPodcast{
        width: 100%;
        order: 2;
    }

    #btnEscuchar{
        order: 1;
        margin: 1em auto;
    }
}

@media (max-width: 600px){
    #videoPodcast, #btnCompartir, #escuchaEnWebs{
        width: 100% !important;
    }

    #escucharCompartir{
        flex-direction: column !important;
    }
}