.new_chapter_box_grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.chapter_box{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}


.chapter_box_img img{
    width: 6.25rem;
    height: 6.25rem;
    border-radius: .5rem;
    object-fit: cover;
}


.chapter_box_text_heading{
    overflow: hidden;
color: var(--Neutral-Black, #1A1A1A);
text-overflow: ellipsis;
font-family: Inter;
font-size: 1.125rem;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 1.575rem */
}

.chapter_box_text_paragraph{
    color: var(--Neutral-Dark-Grey, #4F4F4F);
font-family: Inter;
font-size: 0.875rem;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.00875rem;
}