.list_total {
    margin-bottom: var(--space-24);
}
.list_total_num {
    font-size: var(--font-size-title-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-2);
    color: var(--gray-800);
}
.list_ebook {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: var(--space-24);
}

/* 책이 없을 경우 */
.empty_ebook {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}
.empty_ebook_img {
    width: 480px;
}
.empty_ebook_img img {
    width: 100%;
}
.empty_text {
    font-size: var(--font-size-heading-lg);
    text-align: center;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-2);
    color: var(--gray-800);
}

@media screen and (max-width: 1024px) {
    .list_ebook {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .empty_ebook_img {
        width: 80dvw;
    }
    .empty_text {
        font-size: var(--font-size-body-lg);
    }
}