/* ==========================================
   Music Page
   ========================================== */

   .page-hero {
    background-image:
        linear-gradient(
            180deg,
            rgba(250, 244, 238, 0.12),
            rgba(250, 244, 238, 0.68)
        ),
        var(--page-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .editorial-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

#intro .editorial-grid img {
    height: 520px;
    object-fit: cover;
}

#intro .editorial-copy p + p {
    margin-top: 24px;
}

.sound-list {
    display: flex;
    flex-direction: column;
}

.sound-item {
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.25s ease;
}

.sound-item:hover {
    padding-left: 12px;
}

.sound-content {
    max-width: 900px;
}

.sound-content h3 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 0.95;
    font-weight: 500;
    color: var(--ink);
}

.sound-content p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 22px;
    line-height: 1.7;
}

.remix-copy {
    max-width: 760px;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.track-link {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    color: var(--purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    transition:
        padding-left 0.25s ease,
        opacity 0.2s ease;
}

.track-link:first-child {
    border-top: 1px solid var(--line);
}

.track-link:hover {
    padding-left: 12px;
    opacity: 0.75;
}

.music-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.music-gallery .photo-card {
    height: 480px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.music-gallery .photo-card:hover {
    transform: translateY(-6px);
}

.music-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 980px) {
    #intro .editorial-grid {
        grid-template-columns: 1fr;
    }

    #intro .editorial-grid img {
        height: 420px;
    }

    .sound-content h3 {
        font-size: 36px;
    }

    .sound-content p {
        font-size: 18px;
    }

    .track-link {
        font-size: 22px;
    }
}