section {
    margin-top: 3rem;
    width: 100%;
}
h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    line-height: 1.25rem;
    font-weight: 600;
    color: var(--title);
}

#breadcrumbs {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(18, 18, 23, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.01rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: break-word;
    line-height: 24px;
    overflow: hidden;
}
#breadcrumbs a {
    text-decoration: none;
    color: rgba(18, 18, 23, 0.6);
}

/* Hero */
#hero {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
#hero h1 {
    color: var(--title);
    font-size: clamp(1rem, 5vw, 2.25rem);
    line-height: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    word-break: break-word;
}

@media only screen and (max-width: 750px) {
    #hero {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    #hero img {
        width: 125px;
        height: auto;
    }
    #heroRight {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* -Hero- */

/* Stats */
#stats {
    margin-top: 2rem;
    padding: 1rem;
    width: min(100%, 280px);
    display: flex;
    justify-content: space-between;
    background-color: var(--bg2);
    border: 1px solid var(--bg2-border);
    border-radius: 1rem;
}

#stats div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.statAmount {
    line-height: 1.25rem;
    font-weight: 600;
    white-space: nowrap;
}
.statName {
    color: hsla(37, 73%, 10%, 0.8);
    letter-spacing: 1px;
    font-size: 0.75rem;
}
/* -Stats- */

/* Start Reading */
#start-reading {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#start-reading img {
    width: 150px;
    object-fit: cover;
}
#start-reading a {
    margin-top: -9px;
    padding: 0.4rem 0.7rem;
    color: var(--action-text);
    text-decoration: none;
    font-size: 1.5rem;
    background: var(--action-bg);
    border-radius: 1rem;
    border-bottom: 3px solid var(--action-border);
}
/* -Start Reading- */

/* Synopsis */
#synopsis p {
    font-size: clamp(0.875rem, 3vw, 1rem);
    line-height: 1.71;
    color: var(--text-simple);
    white-space: pre-line;
}
/* -Synopsis- */

/* Genres */
#genres {
    margin-top: 1rem;
}
#genres ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.genre {
    color: var(--accent);
    font-size: clamp(0.75rem, 2vw, 1rem);
    line-height: 1rem;
    font-weight: 500;
    text-decoration: none;
}
/* -Genres- */

/* Tags */
#tags ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.tag {
    color: var(--accent);
    font-size: clamp(0.75rem, 2vw, 1rem);
    line-height: 1rem;
    font-weight: 500;
    text-decoration: none;
}
/* -Tags- */

/* Chapter  */
#chapters {
    margin-top: 3rem;
}
#chapters img {
    width: 150px;
    object-fit: cover;
}
.chapter {
    padding-top: 1rem;
    border-top: 1px solid rgba(18, 18, 23, 0.1);
}
.chapter h3 {
    margin: 1rem 0;
    padding: 0.5rem;
    display: inline-block;
    font-weight: 400;
    color: var(--title);
    font-size: 1.5rem;
    background: hsl(37 73% 95%);
    border-radius: 0.5rem;
    box-shadow: 10px 5px #ffbc69;
}
.chapter p {
    margin-bottom: 0.8rem;
    color: var(--text-simple);
    font-size: 1rem;
    line-height: 1.6875;
    word-wrap: break-word;
}
/* -Chapter-  */

/* Continue Reading  */
#continue-reading {
    padding: 4px 7px;
    color: var(--action-text);
    text-decoration: none;
    font-size: 1.4rem;
    background: var(--action-bg);
    border-radius: 4px;
    border-bottom: 3px solid var(--action-border);
}
/* -Continue Reading-  */

/* Recommended Novels  */
.recs-novels {
    margin-top: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}
.recs-novel {
    width: 28vw;
}
.recs-novel a {
    text-decoration: none;
}
.recs-novel img {
    width: 28vw;
    height: calc(1.333 * 28vw);
    object-fit: cover;
    border-radius: 4px;
}
.recs-novel h3 {
    margin-bottom: 0.25rem;
    height: 2.5rem;
    display: -webkit-box;
    color: var(--title);
    font-size: clamp(0.8rem, 5vw, 1rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
@media only screen and (min-width: 500px) {
    .recs-novel {
        width: min(15vw, 9rem);
    }
    .recs-novel img {
        width: min(15vw, 9rem);
        height: calc(1.333 * min(15vw, 9rem));
    }
}
/* -Recommended Novels-  */
