/* paragraph list */

#paragraph-list {
    gap: 62px;
    max-width: var(--max-notebook-list-width);
    margin: 0 auto;
}

.list-wrapper {
    width: 660px;
    min-height: 480px;
}

.part-header {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 22px;
}

.paragraphs-ul {
    padding-left: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.paragraphs-li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px
}

.paragraphs-li-a {
    font-size: 18px;
    padding-left: 30px;
}

.unread {
   background: url("../../images/paragraphs/paragraphs_unread.svg") no-repeat left center;
}

.read {
    background: url("../../images/paragraphs/paragraphs_read.svg") no-repeat left center;
}

.task-wrapper {
    gap: 20px;
    display: flex;
    align-items: center;
}

/* paragraphs statistic */

.paragraphs-statistic-wrapper {
    display: flex;
}

.circle-progress {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}

.paragraphs-statistic {
    padding: 20px;
    border-radius: 6px;
    background-color: #FFFFFF;
    display: flex;
    height: 108px;
    gap: 30px;
}

.statistic-title {
    color: #8A8E90;
    font-size: 16px;
    margin-bottom: 10px;
}

.statistic-value {
    font-weight: 600;
    font-size: 25px;
    color: #595959;
}

@media (max-width: 1280px) {
    .part-header {
        font-size: 18px;
        font-weight: bold;
    }

    .list-wrapper {
        width: 100%;
    }

    .list-wrapper li {
        font-size: 16px;
    }

    .paragraphs-li  {
        text-decoration: underline;
    }
}
