.contents-list {
    padding: 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    counter-reset: contentsIndex;
}
.contents-list__title {
    font-weight: normal;
    font-size: 22px;
    line-height: 1.3;
    color: #232628;
}
.contents-list__item {
    font-weight: normal;
    font-size: 18px;
    line-height: 1.3;
    color: #232628;
    counter-increment: contentsIndex;
}
.contents-list__item:before {
    content: counter(contentsIndex)".";
}
.contents-list__link {
    color: #41a7c6;
    text-decoration: underline;
}
.contents-list__link:hover {
    text-decoration: none;
}

.article-author {
    margin-top: 30px;
    margin-bottom: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.article-author__img-wrapper {
    flex: 0 0 auto;
}
.article-author__img {
    display: block;
    width: 80px;
    height: 80px;
    object-position: center center;
    object-fit: cover;
    border-radius: 50%;
}
.article-author__info {
    flex: 1 1 auto;
}
.article-author__name {
    font-weight: bold;
    font-size: 16px;
}
.article-author__helper {
    font-size: 14px;
    color: #555;
}
.article-author {}
.article-author {}