.sa-container-9786487d {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: inherit;
}

.sa-row-9786487d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    gap: 20px;
}

.sa-row-9786487d:last-child {
    border-bottom: none;
}

.sa-image-col-9786487d {
    flex: 0 0 180px;
    height: 180px;
    overflow: hidden;
}

.sa-cover-9786487d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sa-row-9786487d:hover .sa-cover-9786487d {
    transform: scale(1.05);
}

.sa-info-col-9786487d {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sa-number-9786487d {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.5;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.sa-title-9786487d {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 4px;
}

.sa-info-9786487d {
    font-size: 13px;
    opacity: 0.5;
}

.sa-player-col-9786487d {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.sa-progress-wrapper-9786487d {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sa-time-9786487d {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 4px;
}

.sa-progress-line-9786487d {
    height: 1px;
    background: #000;
    width: 0%;
    transition: width 0.1s linear;
}

.sa-progress-wrapper-9786487d::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin-bottom: -1px;
}

.sa-play-btn-9786487d {
    width: 48px;
    height: 48px;
    border: 1px solid #000;
    border-radius: 50%;
    background: transparent;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.sa-play-btn-9786487d:hover,
.sa-play-btn-9786487d.playing {
    background: #000;
    color: #fff;
}

@media (max-width: 767px) {
    .sa-row-9786487d {
        padding: 15px 0;
        gap: 10px;
    }
    
    .sa-image-col-9786487d {
        flex: 0 0 90px;
        height: 90px;
    }
    
    .sa-title-9786487d {
        font-size: 18px;
    }
    
    .sa-player-col-9786487d {
        flex: 0 0 100px;
        gap: 10px;
    }
    
    .sa-play-btn-9786487d {
        width: 40px;
        height: 40px;
    }
}