.author-info {
    color: #586469;
    font-size: 20px;
    font-weight: 400;
}

#paragraph-content {
    /*all: unset;*/
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.a4-paper {
    width: 1020px;
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 1.6;
    font-family: Circle,-apple-system, Montserrat, sans-serif;
}

#paragraph-content ul {
    padding-left: 36px;
}

#description {
    max-width: var(--max-notebook-list-width);
    gap: 10px;
    margin: 0 auto 44px;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

#paragraph-content div:not(:last-child) {
    margin-bottom: 12px;
}

.tasks-block {
    min-width: 300px;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #C9C9C9;
    gap:20px;
    align-items: flex-start;
    height: 108px;
}

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

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

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

.go-to-task-btn {
    border: 1px solid #C9C9C9;
    border-radius: 4px;
    padding: 10px;
    -webkit-transition: 150ms ease-in-out;
    transition: 150ms ease-in-out;
}

.go-to-task-btn:hover {
    cursor: pointer;
    background-color: #F8CA73;
    transform: scale(1.03);
}

.a4-paper h2 {
    padding: 10px 0 0;
    font-size: 22px;
    font-weight: bold;
    line-height: 31px;
    margin: 0 0 18px;
}

.a4-paper h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
    padding: 10px 0 0;
}

.a4-paper p:not(:last-child) {
    margin-bottom: 12px;
}

.a4-paper pre code {
    border-radius: 10px;
}

.a4-paper p ol {
    padding-top: 10px;
}

.a4-paper ol {
    text-indent: 5px;
    gap: 3px;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
	counter-reset: num;
    list-style: unset;
}

.code-wrapper {
    border-radius: 12px;
}
/* after paragraph */

.after-paragraph-controller {
    background-color: #FFFFFF;
    padding: 20px;
    width: 300px;
    border: 1px solid #C9C9C9;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.after-paragraph-controller:hover {
    scale: 1.03;
    box-shadow: 12px 12px 12px rgba(8, 194, 207, 0.7);
}

.controller-img {
    width: 62px;
    height: 62px;
}

.controller-wrapper {
    gap: 60px
}

.button-controller {
    gap: 20px;
    align-items: center;
}

.button-label {
    color: #8A8E90;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 100%;
    display: block;
}

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

.label-wrapper {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.paragraph :not(pre) code {
    background-color: #3e434a;
    padding: 2px 8px;
    border-radius: 8px;
    color: white;

}


.paragraph-table {
    border-collapse: collapse;
    border: 2px solid #2a2f36;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}

.paragraph-table caption {
    caption-side: bottom;
    padding: 10px;
    font-weight: bold;
}

.paragraph-table thead {
    background-color: #2a2f36;
    color: #C9C9C9;
    font-weight: bold;
    font-size: 18px;
}

.paragraph-table thead th {
    padding: 10px;
}

.paragraph-table th, td {
    border: 1px solid #2a2f36;
}

.trow {
    text-align: center;
}

.paragraph-table td {
    padding: 6px;
}

.paragraph a {
    text-decoration: underline;
}

.paragraph p {
    line-height: 150%;
}

.paragraph p:last-child {
    margin-bottom: 28px;
}
.paragraph p:not(:last-child) {
    margin-bottom: 18px;
}

@media (max-width: 1024px) {
    #description {
        margin: 0 auto 0;
    }

    .author-info {
        font-size: 16px;
    }

    .a4-paper {
        width: 100%;
    }

    .paragraph-h2 {
        font-size: 26px;
    }

    .paragraph p {
        font-size: 16px;
    }
}