.rg-podcast-meta {
    display: flex;
    background: #D9D9D9;
    align-items: center;
    justify-content: space-between;
    padding: 10px;

    & .rg-podcast-infos {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    & .rg-podcast-title {
        color: #423E3E;
        font-family: 'Poppins';
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 0;
    }

    & .podcast-date,
    & .podcast-length {
        color: #3E3E3E;
        font-family: 'Poppins';
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
    }

    & a.podcast-category {
        color: #3E3E3E;
        font-family: 'Poppins';
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        text-decoration: none;

        background: linear-gradient(to right, #3E3E3E);
        background-repeat: no-repeat;
        background-position: bottom left;
        background-size: 100% 1.5px;
        transition: background-size 500ms;

        &:hover {
            background-position: bottom right;
            background-size: 0% 1.5px;
        }
    }

    & .podcast-length {
        display: flex;
        gap: 5px;

        & svg {
            width: 19px;
        }
    }
}

.rg-podcast-controls {
    position: relative;
    background: #3D3D3D !important;
    height: 100px;
}

.rg-podcast-wave svg {
    height: 100px;
}

.rg-podcast-play {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: none !important;
    padding: 0;
    border-radius: 0;
    z-index: 99;
	font-size: 30px;
    color: #ffffff50;
}



.rg-podcast-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #F8DAEA;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.rg-podcast-wave:hover .rg-podcast-thumb {
    opacity: 1;
}

.rg-podcast-wave {
    position: relative;
    height: 100%;
    cursor: none;
    display: none;
}

.rg-podcast-player.is-playing .rg-podcast-wave {
    display: block;
}

@media screen and (width <=767px) {
    .rg-podcast-meta {
        flex-wrap: wrap;
        gap: 20px;
    }
}