/* ═══════════════════════════════════════════════════════════
   ArtGAN Studios — Music Page
   ═══════════════════════════════════════════════════════════ */

/* ── Section label ── */

.section-label {
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 20px 8px;
}

.section-label span {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── Music list container ── */

.music-list {
    max-width: 860px;
    margin: 0 auto;
}

.music-loading {
    padding: 20px;
    color: var(--text-muted);
}

/* ── Single row ── */

.single-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--divider);
    cursor: pointer;
    transition: background 0.12s;
    user-select: none;
}

.single-row:hover {
    background: #fafafa;
}

.single-cover-wrap {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    background: #ece9e4;
}

.single-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-cover-wrap .play-indicator {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.single-row:hover .play-indicator,
.single-row.playing .play-indicator {
    opacity: 1;
}

.single-cover-wrap .play-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.single-meta {
    flex: 1;
    min-width: 0;
}

.single-title {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-album {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.single-date {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
    display: none;
}

/* ── Album feature ── */

.album-feature {
    border-bottom: 1px solid var(--divider);
}

.album-feature-inner {
    display: block;
    transition: background 0.12s;
}

.album-feature-inner:hover {
    background: #fafafa;
}

.album-art-full {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #ece9e4;
}

.album-info {
    padding: 14px 20px 16px;
}

.album-eyebrow {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.album-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.album-meta {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.album-tracklist {
    display: none;
}

@media (min-width: 768px) {

    /* Single row — remove side padding so it aligns with section label */
    .single-row {
        padding: 12px 0;
    }

    .single-cover-wrap {
        width: 56px;
        height: 56px;
    }

    .single-date {
        display: block;
        font-size: 0.6875rem;
    }

    /* Album — side-by-side layout */
    .album-feature-inner {
        display: flex;
        align-items: stretch;
    }

    .album-art-full {
        width: 220px;
        height: 220px;
        aspect-ratio: unset;
        flex-shrink: 0;
    }

    .album-info {
        padding: 22px 28px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-left: 1px solid var(--divider);
        flex: 1;
    }

    .album-title {
        font-size: 1.625rem;
        margin-bottom: 6px;
    }

    .album-tracklist {
        display: block;
        list-style: none;
        margin-top: 14px;
        border-top: 1px solid var(--divider);
        padding-top: 8px;
    }

    .album-tracklist li {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .album-tracklist li:last-child {
        border-bottom: none;
    }

    .album-tracklist .track-name {
        color: var(--text-primary);
    }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */

.about-section {
    border-top: 1px solid var(--divider);
    text-align: center;
    padding: 24px 16px 28px;
}

.about-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.about-headline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.about-body p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 10px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

/* Quoted lyrics — left border separates them from narrative prose */
.about-lyrics {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-lyrics li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.85;
}

.about-lyrics .bullet {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    flex-shrink: 0;
    margin-top: 0.4em;
}

/* Closing line — standalone moment, always centered */
.about-closing {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    margin-top: 22px !important;
    margin-bottom: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .about-section {
        padding: 52px 0 56px;
    }

    .about-label {
        font-size: 0.6875rem;
    }

    .about-headline {
        font-size: 1.375rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    /* Prose is left-aligned inside a centered container on wide screens */
    .about-body {
        max-width: 540px;
        margin: 0 auto;
        text-align: left;
    }

    .about-body p {
        font-size: 1.125rem;
        line-height: 1.85;
    }

    .about-lyrics li {
        font-size: 1.125rem;
        line-height: 1.85;
    }

    .about-closing {
        font-size: 1.125rem;
    }
}