.section_common .container {
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
    padding: var(--space-80) var(--space-32);
    box-sizing: border-box;
}
.section_top {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.section_title {
    color: var(--gray-800);
    font-size: var(--font-size-heading-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-1);
}
.swiper_ctrl {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}
.section_list {
    overflow: hidden;
}
.section_list_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-24);
}

.section_list_card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
}

.section_bg {
    background-color: var(--color-subtle);
}

.section_grid {
    width: 100%;
}

.empty_ebook_list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.empty_ebook_list span {
    font-size: var(--font-size-heading-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-1);
    color: var(--gray-800);
}

@media screen and (max-width: 1024px) {
    .section_common .container {
        padding: var(--space-40) var(--space-20);
    }
    .section_grid {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* Firefox */
        scrollbar-width: none;
        /* IE, Edge (구버전) */
        -ms-overflow-style: none;
    }
    .section_grid::-webkit-scrollbar {
        display: none;
    }
    .section_list {
        margin: 0 -20px;
        padding: 0 var(--space-20);
    }
    .section_list_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .swiper_ctrl {
        display: none;
    }
    .section_list_card {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* Firefox */
        scrollbar-width: none;
        /* IE, Edge (구버전) */
        -ms-overflow-style: none;
    }
    .section_list_card::-webkit-scrollbar {
        display: none;
    }
}