If your play button on the Maven podcast page is misaligned on mobile, here is how to fix it

Find this section of CSS in the stylehseet:


/*Adjust read more link position*/

@media all and (max-width: 767px) {
    .ds-podcast-episodes a.more-link {
        left: calc(50% - 20px);
        top: calc(50% - 50px);
    }
}


And replace it with this:


/*Adjust read more link position*/

@media all and (max-width: 767px) {
    .ds-podcast-episodes a.more-link {
        left: 0;
        top: -50px;
        width: 100%;
    }
}