.post-header {        
    min-height: min(90vh, 650px);
    background-image: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)), var(--post-bgi);
    background-position: center;
    background-color: var(--button-background-color);
    background-size: cover;        
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 30px 30px min(100px, 7%);
}

.post-header .header-content {
    background-color: #ffffff;
    box-shadow: 0 3px 15px #00000021;
    color: #171717;
    padding: 90px 80px;
    box-sizing: border-box;
    width: 40%;
    border-radius: 3px;
}

.post-header h1 {
    margin: 20px 0;
    color: inherit;
    font-size: calc(var(--h1-font-size-desktop) / 1.4); 
}


.post-categories a {
    font-size: 0.76rem;
    font-weight: 500;
    text-transform: uppercase;
}

.post-categories a:hover {
    text-decoration: none;
}

#meta-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 10px;
    align-items: center;        
    font-size: 0.9rem;
    margin-top: 25px;
}

#meta-author {
    display: flex;
    align-items: center;
    gap: 5px
}

#meta-author img {
    border-radius: 50%;
    margin-right: 4px;
}

.meta-text {
    opacity: 0.8;
}

.after-hero {
    padding: 20px
}

.post-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: 50px 0;
}

.post-container {
    flex: 1;        
    max-width: 100%;
}

blockquote {
    padding: 60px;
    background-color: #00000014;
    border-radius: 10px;
    font-size: 1.2rem;
    border-left: none;
    margin: 50px
}

.tags-and-share {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px 0 30px;
    gap: 20px;
}

.tags-and-share a {
    color: inherit;
    opacity: 0.8;
    text-decoration: none;
}

.tags-and-share a:hover {
    color: var(--link-hover-color);
    opacity: 1;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.post-tags {
    display: flex;
    gap: 3px 10px;
    flex-wrap: wrap;
}

.share-icons {
    display: flex;
    gap: 8px
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 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;
    flex: 1;
} 

.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;
}

.nav-thumb {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--link-color);
}

.post-nav:hover .nav-thumb {
    background-color: var(--link-hover-color);
}

.post-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.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);
}

.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.7;
}

.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-header .header-content {
        padding: 40px 30px;
        width: 60%
    }

    .post-header h1 {
        font-size: calc(var(--h1-font-size-tablet) / 1.4); 
    }

    .tags-and-share {
        flex-direction: column;
        gap: 20px
    }

    .post-tags {
        flex-wrap: wrap
    }
}

@media (max-width:480px) {
    .post-header h1 {
        width: 100%;
        font-size: calc(var(--h1-font-size-mobile) / 1.2); 
    }

    .post-header .header-content {
        padding: 20px;
        width: 100%;
    }

    .post-header {            
        min-height: min(70vh, 400px);
    }

    #meta-extra {   
        font-size: 0.8rem;            
    }

    blockquote {
        padding: 20px;
        margin: 20px
    }

    .post-author {
        flex-direction: column;
        align-items: center;
        padding: 20px
    }

    .author-info {
        text-align: center
    }

    .author-social-links {
        justify-content: center
    }

    .comment-meta img.avatar {
        width: 60px;
        height: auto
    }

    .post-navigation {
        flex-direction: column;
        gap: 20px
    }

    .post-navigation div {
        max-width: 100%
    }
    .tail-div {
        margin-right: 0;
        margin-left: 0;
    }

    .related-posts {
        grid-template-columns: 1fr
    }
}