/* Mobile taxonomy: show song details (writers, themes, scripture, etc.) on small screens */
@media screen and (max-width: 767px) {
    .t-song-details__details {
        display: block !important;
        margin-bottom: 25px;
    }

    .t-song-details__details .detail {
        flex-direction: column;
        padding: 12px 0 8px;
    }

    .t-song-details__details .detail span {
        width: 100%;
        font-size: 13px;
        font-weight: bold;
        color: #D9D9D9;
        margin-bottom: 4px;
    }

    .t-song-details__details .detail p {
        width: 100%;
        margin: 0;
        font-size: 14px;
    }

    .t-song-details__details .detail a {
        display: inline-block;
        padding: 2px 0;
        color: #fff;
    }
}