.podcastBanner {
    width: 100%;
    padding: 30px 20px;
    min-height: 350px;
    position: relative;
    background-color: #20a6ff;
}
.podcastContent {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.podcastContent > a {
    width: 90%;
    margin: 20px 0;
    display: block;
    border-radius: 5px;
    max-width: 150px;
    overflow: hidden;
    position: relative;
}
.podcastContent > a::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        #2d2d2d -13.47%,
        rgba(85, 85, 85, 0.26) 8.04%,
        rgba(196, 196, 196, 0) 100%
    );
    position: absolute;
    top: 0;
    left: 0;
}

.podcastContent > a {
    margin: 0 0;
}
.podcastContent > a > img {
    width: 100%;
}
.podcastContent a:hover > img {
    transform: scale(1.2);
    transition: all ease-out 150ms;
}
.detallePodcast {
    text-align: center;
}
.detallePodcast > h1 {
    font-family: 'HelveticaRounded LT Std Bd';
    color: white;
    font-size: 19px;
}
.detallePodcast > a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    margin: 20px 0;
}
.detallePodcast > a > img {
    margin-left: 10px;
}
.soundBar {
    display: none;
}
.podcastMiniatura > img {
    width: 150px;
    height: auto;
}
.podcastList {
    padding-top: 30px;
    padding-bottom: 30px;
}
.podcastCapsula {
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
}
.podcastMiniatura {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.podcastMiniatura img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.podcastMiniatura::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        #000000 -13.47%,
        rgba(0, 0, 0, 0.65) 18.04%,
        rgba(196, 196, 196, 0) 100%
    );
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.podcastMiniatura > figcaption,
.podcastMiniatura > small {
    position: relative;
    z-index: 2;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}
.podcastMiniatura > figcaption {
    font-size: 20px;
    font-weight: 700;
}
.podcastList__detalles h2,
.podcastList__detalles p,
.podcastList__detalles a {
    font-family: 'Open Sans', sans-serif;
    color: #868686;
}
.podcastList__detalles h2 {
    font-size: 16px;
    padding: 10px 0;
    font-weight: 700;
}
.podcastList__detalles p {
    font-size: 14px;
}
.podcastList__detalles a {
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-top: 10px;
}
.podcastList__detalles a:hover > img {
    transform: scale(1.1);
}
.podcastList__detalles img {
    margin-left: 10px;
    transition: transform ease-in-out 150ms;
}
@media (min-width: 450px) {
    .podcastCapsula {
        flex-direction: row;
    }
    .podcastList__detalles {
        margin-left: 10px;
    }
}
@media (min-width: 768px) {
    .podcastBanner {
        min-height: 200px;
        position: relative;
        overflow: hidden;
    }
    .soundBar {
        display: inline-block;
        margin: auto 0;
        margin-left: auto;
    }
    .podcastContent {
        flex-direction: row;
        position: relative;
        z-index: 2;
    }
    .podcastContent > a {
        margin-right: 20px;
    }
    .detallePodcast {
        text-align: left;
    }
    .detallePodcast > h1 {
        width: 300px;
        font-size: 20px;
        line-height: 1.3em;
    }
    .detallePodcast > a {
        justify-content: flex-start;
        margin: 10px 0;
    }
}
@media (min-width: 1024px) {
    .soundBar {
        margin-right: 450px;
    }
    .podcastBanner {
        border-radius: 10px;
        margin-top: 30px;
        padding-left: 60px;
    }
    .podcastBanner::after {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        content: url('https://www.banbif.com.pe/Portals/0/blog-reinventa/img/podcast/playbg.png');
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 0;
        top: 0;
        right: -280px;
    }
    .podcastList {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }
    .podcastCapsula {
        max-width: 545px;
    }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .podcastList {
        display: flex;
        flex-wrap: wrap;
    }
}
