.sub-hero.listen{
    background: url(../images/artists/artistman.jpeg);
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 80vh;
}

.musics{
    min-height: 80vh;
    padding: 5rem 10vw; 
}

.sermons .music-cards{
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    align-items: stretch;
    gap: 2rem;
    height: auto;
    position: relative;
}

.audio-card {
    max-width: 360px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px; 
}

.audio-poster {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 150px;
    cursor: pointer;
}

.audio-poster img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(0,0,0,.4);
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
}

.audio-card h2 {
    margin: 12px 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
}

.audio-card p { 
    font-size: 0.9rem;
}

@media screen and (max-width: 600px){
    .sermons .music-cards{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
