@charset "utf-8";

.musicTitle{
    margin-bottom: 1.2em;
    font-size: 1.142em;
    font-weight: 400 !important;
}
.musicList {
    display: flex;
    flex-wrap: wrap;
    gap: 1em .8em;
    padding: 0;
}
.musicCard {
    display: flex;
    align-items: center;
    width: calc(33.333% - .6em); /* 横3列 */
}
.musicCard__btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5em;
    aspect-ratio: 1;
    padding: .7em;
    border: none;
    background: none;
    filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, 0.16));
    cursor: pointer;
    transition: opacity 0.15s;
}
.musicCard__btn:hover {
    opacity: 0.7;
}

.musicCard__btn:active {
    opacity: 0.5;
}
.musicCard__btn-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.musicCard__body {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px 12px 0;
    border-left: 0.5px solid rgba(0, 0, 0, 0.1);
    min-width: 0; 
}
.musicCard__info {
    flex: 1;
    min-width: 0;
}
h4.musicCard__title {
    padding: 0;
    margin: 0;  
    font-size: 1.142em;
    font-weight: 500;
    color: #333 !important;
    border: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
Responsive
-------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .musicCard {
        width: calc(50% - .6em); /* 横2列 */
    }
}

@media (max-width: 560px) {
    .musicCard {
        width: 100%; /* 横1列 */
    }
}