.notes-page {
    width: 80vw;
    max-width: 860px;
    margin: 0 auto;
    padding: 52px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.notes-page h1 {
    font-size: 46px;
    font-weight: 800;
}

.notes-page h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Currently reading shelf */
.currently-reading {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reading-shelf {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.reading-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 420px;
    background: #fafafa;
}

.reading-card__cover {
    width: 90px;
    min-width: 90px;
    height: 130px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.reading-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reading-card__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reading-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.reading-card__author {
    font-size: 14px;
    color: var(--gray-100);
}

.reading-card__note {
    font-size: 14px;
    color: var(--black-500);
    font-style: italic;
    line-height: 1.5;
}

/* Past book notes grid */
.booknotes-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booknotes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.booknote-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform .15s;
}

.booknote-card:hover {
    transform: translateY(-4px);
}

.booknote-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.booknote-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.booknote-card p {
    font-size: 13px;
    color: var(--gray-100);
}

.booknote-card__stars {
    font-size: 13px;
    color: var(--secondary);
    letter-spacing: 1px;
}

@media only screen and (max-width: 880px) {
    .notes-page {
        width: 90vw;
        padding: 32px 0 60px;
    }

    .reading-card {
        min-width: 100%;
    }

    .booknotes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 540px) {
    .booknotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}