.post-content  {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 0px;
}

.post-content {
    color: #ddd;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    margin: 0 auto;
    padding: 20px;
    overflow-wrap: break-word;
}

.categories {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    padding: 15px;
}


.category-badge:hover {
    opacity: 0.8;
}

.author-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0;
}
.comments-section {
    padding-bottom: 0;
    padding-top: 0;
}
@media (min-width: 769px) {
    .author-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0;
}
.comments-section {
    padding-bottom: 0;
    padding-top: 0;
}
}

.author-profile {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    margin-right: 15px;
    z-index: 20;
}

.author-info {
    z-index: 20; 
    color: #fff;
}

.author-info h3 {
    margin: 0;
    font-size: 22px;
}

.author-info p {
    margin: 5px 0 0;
    color: #bbb;
}

.author-profile .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(3px); 
    border-radius: 10px;
    z-index: 10;
}

.related-posts {
    margin-top: 0px;
}

@media (max-width: 768px) {
    .post-content {
        padding: 15px;
        max-width: 100%;
            background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    }
}

form#commentform.comment-form {
    background: transparent;
    padding: 0px;
    border-radius: 10px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;

}

textarea#comment {
    background-color: rgba(255, 255, 255, 0.1); 
    color: #fff; 
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    resize: vertical;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: auto;

}


input#submit.submit {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input#submit.submit:hover {
    background-color: #f1f1f1;
}

form#commentform.comment-form p.comment-form-author,
form#commentform.comment-form p.comment-form-email,
form#commentform.comment-form p.comment-notes,
form#commentform.comment-form p.comment-form-url,
h3#comments,
.comment-meta.commentmetadata {
    display: none;
}

@media (max-width: 768px) {
    form#commentform.comment-form {
        padding: 15px;
    }

    textarea#comment {
        font-size: 14px;
    }

    input#submit.submit {
        font-size: 14px;
        padding: 8px 16px;
    }
}
.comments-area {
    background: transparent;
    padding: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.comment-list li {
    list-style: none;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 10px;
    color: #fff;
}


.comment-list .comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-list .comment-meta {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.comment-list .comment-content {
    font-size: 16px;
    line-height: 1.5;
}

.children {
    margin-left: 30px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.comment-reply-link {
    display: inline-block;
    margin-top: 10px;
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.comment-reply-link:hover {
    background-color: #f1f1f1;
}

.comments-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    color: #fff;
}

.comment-navigation a {
    color: #fff;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.comment-navigation a:hover {
    background-color: #f1f1f1;
    color: #000;
}

@media (max-width: 768px) {
    .comment-list li {
        padding: 10px;
        font-size: 14px;
    }

    .comments-title {
        font-size: 18px;
    }

    .comment-reply-link {
        font-size: 12px;
    }

    .comment-navigation a {
        font-size: 12px;
        padding: 5px 8px;
    }
}
.post-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
}

.post-main-content {
    flex: 3;
}

.post-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .post-wrapper {
        flex-direction: row;
        margin-left: 60px;
        margin-right: 60px;
    }

    .post-main-content {
        padding-right: 30px;
        padding-left: 30px;
    }

    .post-sidebar {
        max-width: 300px;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        padding: 10px;
        border-radius: 10px;
    }
}

.categories,
.comments-section {
    padding: 15px;
    border-radius: 10px;

}
div#comment {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

div.comment-body {
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
}

div.comment-author.vcard {
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
div.comment-author.vcard cite.fn a.url {
    color: #fff;
    font-style: normal;
    text-decoration: none;
    margin-right: 5px;
    font-weight: bold;
}
div.comment-author.vcard cite.fn {
    color: #fff;
    font-style: normal;
    text-decoration: none;
    margin-right: 5px;
    font-weight: bold;
}

div.comment-meta {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
}

.comment-content p {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}

img.avatar {
    border-radius: 50%;
    padding: 3px;
    width: 40px;
    height: 40px;
}

div.alignleft {
    margin-right: 10px;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 5px;
}
div.alignleft a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
div.alignright a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

div.alignright {
    margin-right: 10px;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    margin-top: 5px;
}
.comment-reply-title a {
    color: #fff;
    text-decoration: none;
}
a#cancel-comment-reply-link {
    background-color: #fff;
    border-radius: 5px;
    padding: 3px;
    text-decoration: none;
    color: #000;
}
p.logged-in-as {
    display: none;
}