body {
    background-color: #F5F5F5;
}

.blog-post {
    padding-top: 30px;
}

.blog-post .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.blog-post article {
    width: 70%;
}

.blog-post aside {
    width: 25%;
    align-items: auto;
    height: auto;
}

.blog-post article h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 169%;
    color: #1C2856;
    margin: 0;
}

.blog-post article .after-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.blog-post article .time {
    display: block;
    padding-right: 25px;
    background-repeat: no-repeat;
    background-position: right center;
    background-image: url(../img/date.png);
    background-size: 22px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.6);
}

.blog-post nav a {
    text-decoration: none;
    color: #000;
}

.blog-post nav>*:not(:first-child) {
    position: relative;
    padding-right: 20px;
}

.blog-post nav>*:not(:first-child)::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    right: 4px;
    top: 10px;
    border-radius: 50%;
    background-color: #EA7945;
}

.blog-post nav span {
    color: #EA7945;
}

.blog-post .meta {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.blog-post .meta .item {
    display: flex;
    gap: 10px;
    min-width: 200px;
}

.blog-post .meta .item .details {
    display: flex;
    flex-direction: column;
}

.blog-post .meta .item .icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-post .meta .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post .meta .item .details .key {
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: rgba(0, 0, 0, 0.5);
}

.blog-post .meta .item .details .value {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
}

.blog-post .content {
    font-weight: 300;
    font-size: 19px;
    line-height: 40px;
    color: #000000;
}

.blog-post .thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

aside .toc {
    margin: 20px 0;
    position: sticky;
    top: 120px;
    background-color: #F5F5F5;

}

aside .toc .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    line-height: 37px;
    color: #000000;
}

aside .toc .title a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E86A30;
    border-radius: 8px;
    width: 44px;
    height: 44px;
}

aside .toc ul {
    list-style: none;
    padding-right: 10px;
    margin-top: 20px;
    border-right: 2px solid #bdbdbd50;
}

aside .toc ul li {
    display: block;
    margin-bottom: 8px;

}

aside .toc ul li a {
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
}

aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

aside .widget {
    box-sizing: border-box;
    margin-bottom: 20px;
}

aside .widget-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 37px;
    color: #000000;
}

aside .widget a {
    text-decoration: none;
    color: #E86A30;
}

.comments {
    margin-top: 50px;
}

#commentform {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#commentform input[type="text"],
#commentform input[type="email"],
#commentform textarea {
    box-sizing: border-box;
    padding: 10px 16px;
    background: #F7F7F7;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 100%;
    outline: none;
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
}

#commentform input[type="submit"] {
    background: #E86A30;
    border: none;
    box-shadow: 0px 0px 21.6px rgba(0, 0, 0, 0.16);
    border-radius: 4px;
    color: #fff;
    width: 100%;
    padding: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 31px;
}

#commentform .logged-in-as a {
    text-decoration: none;
    color: #E86A30;
}


.comments-list,
.comments-list ol,.comments-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments-list li.comment {
    background-color: #F7F7F7;
    border: 1px solid #f0efef;
    border-radius: 6px;
    margin: 20px 0;
    padding: 20px;
    position: relative;
}


.comments-list ol.children {
    margin-left: 40px;
    margin-top: 15px;
}


.comments-list li.comment .comment-author img.avatar {
    border-radius: 50%;
    float: right;
    margin-left: 15px;
    width: 48px;
    height: 48px;
    border: 2px solid #E86A30;
}

.comments-list li.comment .comment-author{
    margin-bottom: 5px;
}

.comments-list li.comment .comment-meta {
    font-size: 0.9rem;
    color: #1C2856;
    margin-bottom: 8px;
    overflow: hidden;
}


.comments-list li.comment .comment-author .fn {
    font-weight: 600;
    color: #1C2856;
    text-decoration: none;
}

.comments-list li.comment .comment-author .fn:hover {
    color: #E86A30;
}


.comments-list li.comment .comment-metadata a {
    color: #1C2856;
    text-decoration: none;
}

.comments-list li.comment .comment-metadata a:hover {
    text-decoration: underline;
    color: #E86A30;
}


.comments-list li.comment .comment-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #1C2856;
    margin-top: 10px;
    clear: both;
}


.comments-list li.comment .reply a {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #E86A30;
    text-decoration: none;
    border: 1px solid #E86A30;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.comments-list li.comment .reply a:hover {
    background-color: #E86A30;
    color: #F7F7F7;
}


.comments-list ol.children li.comment {
    border-color: #1C2856;
}


.comments-list li.comment .comment-content blockquote {
    margin: 15px 0;
    padding: 10px 15px;
    background-color: #E86A30;
    color: #F7F7F7;
    border-left: 4px solid #1C2856;
    border-radius: 4px;
}


.comments-list li.comment .comment-content a {
    color: #1C2856;
    text-decoration: underline;
}

.comments-list li.comment .comment-content a:hover {
    color: #E86A30;
}


.comments-list li.comment .comment-author .bypostauthor {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.75rem;
    background-color: #1C2856;
    color: #F7F7F7;
    padding: 2px 6px;
    border-radius: 3px;
    vertical-align: text-top;
}


@media (max-width: 600px) {
    .comments-list li.comment {
        padding: 15px;
    }

    .comments-list li.comment .comment-author img.avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .comments-list li.comment .reply a {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
}