.rhwp-podcasts {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.rhwp-podcasts .rh-podcast {
    display: grid;
    grid-template-columns: 24fr 64fr 12fr;
    border: 1px solid #002F5F;
    border-radius: 10px;
    padding: 2px 0;
}

.rhwp-podcasts .rh-podcast a {
    text-decoration: none;
}

.rhwp-podcasts .rh-podcast .rh-podcast__cover {
    position: relative;
    overflow: hidden;
    height: 150px;
}

.rhwp-podcasts .rh-podcast .rh-podcast__cover img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: 100%;
    border-radius: 10px;
}

.rhwp-podcasts .rh-podcast .rh-podcast__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1em;
}

.rhwp-podcasts .rh-podcast .rh-podcast__info h2 {
    margin: 0;
    font-size: 1.2em;
    padding-bottom: .5em;
}

.rhwp-podcasts .rh-podcast .rh-podcast__info h2 a {
    color: #9B9B9B;
}

.rhwp-podcasts .rh-podcast .rh-podcast__info p {
    position: relative;
    font-size: 1em;
    font-weight: bold;
    margin: 0;
}

.rhwp-podcasts .rh-podcast .rh-podcast__info p:before {
    content: ' ';
    position: absolute;
    top: -1px;
    left: 0;
    width: 4%;
    height: 1px;
    background-color: #9B9B9B;
}

.rhwp-podcasts .rh-podcast .rh-podcast__actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rhwp-podcasts .rh-podcast .rh-podcast__actions a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    color: #fff;
    background-color: #E00034;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.rhwp-podcasts .rh-podcast .rh-podcast__actions a i {
    padding-left: 4px;
}

@media screen and (max-width: 991px) {
    .rhwp-podcasts .rh-podcast {
        display: flex;
        flex-flow: column;
    }

    .rhwp-podcasts .rh-podcast .rh-podcast__cover {
        height: 250px;
    }

    .rhwp-podcasts .rh-podcast .rh-podcast__cover img {
        width: 98%;
        left: 1%;
    }

    .rhwp-podcasts .rh-podcast .rh-podcast__info {
        align-items: center;
    }

    .rhwp-podcasts .rh-podcast .rh-podcast__info p:before {
        width: 15%;
    }

    .rhwp-podcasts .rh-podcast .rh-podcast__actions {
        padding-bottom: .5em;
    }
}
