.post-featured-image { 
    height: 350px;
    background-image: var(--post-bgi);
    background-position: center;
    background-size: cover;
    background-color: var(--button-background-color);
    margin-bottom: 10px
}

.post-header h1 {
    margin: 20px 0
}

.post-excerpt {
    margin: 0 0 8px
}

.post-header .post-categories a {
    text-decoration: none;
    color: var(--menu-text-color);
    text-transform: uppercase;
    padding: 3px 5px 3px;
    background-color: var(--header-background-color);
    font-size: 0.71rem;
    font-weight: 500
}

.post-header .post-categories a:hover {
    color: var(--menu-text-hover-color)
}

.post-categories a:not(:last-child) {
    margin-right: 5px
}

#meta-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 15px;
    align-items: center;        
    font-size: 0.88rem;
    padding: 15px 0 20px;
    margin: 20px 0 10px;
}

#meta-author {
    display: flex;
    align-items: center;
}

#meta-author img {
    border-radius: 50%;
    margin-right: 8px;
}

.meta-text {
    opacity: 0.8;
}

.post-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: 50px 0;
}

.post-container {
    flex: 1;        
    max-width: 100%;
}

.post-tags {
    display:flex;
    gap: 10px;
}

a.post-tag  {
    font-size: 0.9rem;
    text-decoration: none
}

.share-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: solid 1px #8a8a8a23;
    border-bottom: solid 1px #8a8a8a23;
    padding: 30px 0;
    margin-bottom: 50px;
    align-items: center
}

.share-icons a {
    color: inherit;
    display: inline-flex;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    background-color: #89898924;       
    text-decoration: none;
    border-radius: 50%;        
    transition: color 0.3s ease, background-color 0.5s ease, transform 0.3s ease
}

.share-icons a:hover {
    color: var(--link-hover-color);
    background-color: #0000;
    transform: scale(1.2)
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 10px
}

.post-navigation div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 45%;
} 

.post-navigation span {
    display: flex;
    align-items: center;
    gap: 10px;
} 

.post-navigation div:nth-child(2) span {
    justify-content: flex-end;
}

.post-navigation div:nth-child(2) a {
    text-align: right;
}

.post-navigation a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
}

.post-navigation a:hover {
    color: var(--link-hover-color);
    transition: color 0.3s ease;
}

.post-navigation h4 {
    margin: 0
}

.post-author {
    display: flex;
    gap: 25px;
    padding: 55px;
    border: solid 1px;
    border-radius: 5px;
    margin: 20px 0
}

.post-author h4 {
    margin: 0;
}

.post-author p {
    line-height: 1.4;
}

.post-author img {
    border-radius: 50%;
}

.post-author a {
    text-decoration: none;
    color: inherit; 
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-social-links {
    display: flex;
    gap: 10px;
    font-size: 15px; 
}

.author-social-links a:hover {
    color: var(--link-hover-color);
}

.after-hero {
    padding: 20px
}

.aurora-single-post .comment-respond {
    border-radius: 10px;
    box-shadow: 0 0 30px #00000025;
    margin-top: 60px
}

input#author, input#email, input#url,textarea#comment {
    border-radius: 4px;
    border: solid 1px #88888887;
    background-color: #0000;
    margin: 4px 0 5px
}

.aurora-comment-form label {
    display: inline-block;
    font-weight: 500
}

.aurora-comment-form input#submit {
    background-color: #0000;
    color: var(--link-color);
    padding: 15px 30px;
    border-radius: 6px;
    border: solid 1px var(--link-color);
    font-size: 1rem
}

.aurora-comment-form input#submit:hover {
    border-color: var(--link-hover-color);
    color: var(--link-hover-color)
}

.comment-meta {
    display: flex;
    gap: 12px;
    align-items: center
}

.author-details {        
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center
}

.comment-meta img.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.comment-meta .comment-author {
    font-weight: 600;
}

.comment-meta time {
    font-size: 0.85rem;
    opacity: 0.8;
}

.comment-body {
    margin: 40px 0
}

.comment-list .children .comment-body {
    margin: 20px 0 40px;
}

.comment-list .children .comment {
    border-top: solid 1px #7b7b7b31;
}

.comments-actions a {
    color: var(--link-color)
}   

.related-post {
    margin: 70px 0 50px;
}

.related-posts {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;        
    line-height: 1.2;
}

.related-article .date {
    font-size: 0.8rem;
    margin-bottom: 5px
}

.article-title {
    text-decoration: none;
    color: inherit;
}

.article-title:hover {
    color: var(--link-hover-color);
    transition: color 0.3s ease;
}

.article-thumbnail {
    width: 100%;
    height: 160px;
    background-color: var(--link-color);
    background-position: center;
    background-size: cover;
    margin-bottom: 20px
}

@media (max-width: 768px){
    .post-wrapper {
        flex-direction: column;
        gap: 40px
    }

    .post-tags {
        flex-wrap: wrap
    }

    .post-wrapper {
        margin: 30px 0;
    }
}

@media (max-width:480px) {
    .post-featured-image h1 {
        width: 80%;
    }

    .post-wrapper {
        margin: 10px 0;
    }

    .post-author {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px
    }

    .author-info {
        text-align: center
    }

    .author-social-links {
        justify-content: center
    }

    .related-posts {
        grid-template-columns: 1fr;
    }

    .comment-meta img.avatar {
        width: 60px;
        height: auto
    }
}