/* Album Reviews Page */
.music-section {
    padding: 0.4rem 1.2rem 1.8rem;
    background-color: #FDF6E3;
}

/* Soften header title on this page */
header.no-subtext h1 {
    font-weight: 600;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
}

.music-container {
    max-width: 720px;
    margin: 0 auto;
}

.music-intro {
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    margin-bottom: 1.4rem;
    line-height: 1.7;
    font-weight: 500;
}

.album-card {
    border-top: 1px solid #ddd;
    padding-top: 1.2rem;
    margin-top: 1rem;
}

.album-header {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.album-cover img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.album-meta {
    flex: 1;
}

.album-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.album-artist {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    color: #555;
    margin-bottom: 0.25rem;
}

.album-rating-overall {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 0.6rem;
}

.album-notes {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    line-height: 1.6;
    color: #444;
}

.tracklist {
    margin-top: 0.4rem;
}

.tracklist h3 {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.tracklist-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.tracklist-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(70px, 0.3fr) minmax(0, 1.3fr);
    gap: 0.6rem;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 600;
    color: #555;
    padding: 0.4rem 0.2rem;
    border-bottom: 1px solid #ddd;
}

.track-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(70px, 0.3fr) minmax(0, 1.3fr);
    gap: 0.6rem;
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    padding: 0.5rem 0.2rem;
    border-bottom: 1px solid #eee;
}

.track-name {
    font-weight: 600;
}

.track-rating {
    font-weight: 600;
    color: #333;
}

.track-notes {
    color: #444;
}

.track-notes::before {
    content: "Did not write review, sorry :C";
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .music-section {
        padding: 0.8rem 1rem 1.8rem;
    }

    .album-header {
        flex-direction: row;
        align-items: flex-start;
    }

    .album-cover img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    .album-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .album-cover img {
        width: 160px;
        height: 160px;
    }

    .tracklist-header,
    .track-row {
        grid-template-columns: minmax(0, 1.1fr) minmax(60px, 0.4fr) minmax(0, 1.5fr);
    }
}

@media (max-width: 480px) {
    .music-section {
        padding: 0.8rem;
    }

    .music-intro {
        font-size: 0.95rem;
    }

    .album-title {
        font-size: 1.2rem;
    }

    .tracklist-header,
    .track-row {
        grid-template-columns: minmax(0, 1.2fr) minmax(55px, 0.5fr) minmax(0, 1.8fr);
        gap: 0.4rem;
    }
}

