#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);
}

h1 {
    padding: 1rem;
    width: 100%;
    color: var(--action-text);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
    background: linear-gradient(
        90deg,
        var(--action-border),
        var(--action-bg) 0
    );
    border: 0.125rem solid rgba(0, 0, 0, 0.04);
    border-radius: 1rem;
}

#novels {
    width: 100%;
    list-style: none;
}
.novel {
    padding: 0.75rem 0;
    width: 100%;
    display: flex;
    gap: 0.5rem;
}
.novel img {
    width: min(20.27vw, 140px);
    aspect-ratio: 3/4;
    border-radius: 0.25rem;
}
.novel-content {
    overflow: hidden;
}
.novel h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    color: var(--title);
    font-size: 1rem;
    line-height: 1.125rem;
    letter-spacing: 0.1px;
    font-weight: 500;
    overflow: hidden;
}
.description {
    max-height: 5rem;
    color: var(--text-simple);
    word-break: break-word;
    line-height: 1rem;
    font-size: clamp(0.75rem, 2vw, 1rem);
    overflow-y: scroll;
}
.description p {
    margin-bottom: 0.5rem;
}

.novel div a {
    margin-top: 1.5rem;
    padding: 0.25rem 0.5rem;
    display: inline-block;
    color: var(--action-text);
    text-decoration: none;
    font-size: 1rem;
    background: var(--action-bg);
    border-radius: 0.5rem;
    border-bottom: 3px solid var(--action-border);
}
