﻿.soundtrack-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    max-width: 1120px;
    margin: 0 auto;
    align-items: start;
}

.soundtrack-left {
    width: 260px;
    position: sticky;
    top: 120px;
}

.album-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.album-meta {
    margin-top: 20px;
    padding: 15px;

    font-size: 13px;
    line-height: 1.6;

    background: #f2f2f2;
    border-radius: 12px;
}

.meta-row {
    margin-bottom: 6px;
}

.soundtrack-right {
    min-width: 0;
}

.tracklist {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.tracklist-header {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
}

.tracklist-body {
    font-size: 14px;
    line-height: 1.6;
}


.tracklist {
    overflow: hidden;
}
.track-row {
    display: grid;
    grid-template-columns: 50px 1fr 70px;
    gap: 15px;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
    transition: background-color .2s ease;
}

.track-row:hover {
    background-color: rgba(0,0,0,.06);
}

.track-row:not(.track-header):hover {
    background-color: rgba(0,0,0,.06);
}


.track-row:last-child {
    border-bottom: none;
}

.track-header {
    font-weight: bold;
    background: #e8e8e8;
}


@media (max-width: 900px) {
    .soundtrack-layout {
        grid-template-columns: 1fr;
    }

    .soundtrack-left {
        width: 100%;
    }
}

.track-section {

    margin-top:25px;
    margin-bottom:10px;

    padding:8px 12px;

    font-weight:bold;
    font-size:16px;

    background:#444;
    color:#fff;

    border-radius:8px;

}