.album-name { /* Renamed from h1 */
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 0.2em;
}

.artist-name { /* Renamed from h2 */
    font-size: 1.7em;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.6em;
}

.song-name {
    font-size: 1.4em;
    font-weight: 600;
    margin-top: 2em; /* Add space above song titles */
    margin-bottom: 0.5em;
    color: var(--song-title-color); /* Use variable */
}

/* UPDATED: Remove sticky and width from image itself */
.album-art {
    max-width: 85%; /* Allow image to fill the container width */
    height: auto;
    border-radius: 4px;
}

/* Annotation Styling - Keep specific styles */
.annotation {
    display: flex;
    margin-bottom: 1.2em; /* Space between annotations */
}

.annotation-text {
    flex: 1;
    font-size: 1.1em;
    text-align: justify;
}

.annotation-date {
    white-space: nowrap;
    font-size: 0.8em;
    color: var(--annotation-date-color); /* Use variable */
}

.layout-sticky-left {
    width: 40%;
}
