.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment,
.pingback {
    background-color: transparent;
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
    padding: 1rem;
    margin: 3rem auto;
    border-radius: 3rem;
    border-width: 0 0 0 0.5rem;
    border-style: solid;
    border-color: blue;
    color: rgb(225, 0, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.comment.depth-2,
.comment.depth-3,
.comment.depth-4 {
    margin-left: 3rem;
    background: #f8f9fa;
    border-left-color: #95a5a6;
}

.comment .avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    float: left;
    margin: 0 3rem 0 0;
    border: 0.3rem solid rgb(225, 0, 255);
}

.comment-body {
    overflow: hidden;
}

.comment-meta {
    margin: 0 0 1rem 0;
}

.comment-author {
    font-weight: 600;
    color: red;
    font-size: 1.1rem;
}

.comment-author a {
    color: inherit;
    text-decoration: none;
    color: black;
}

.comment-author a:hover {
    color: rgb(225, 0, 255);
}

.comment-metadata {
    font-size: 0.85rem;
    color: gray;
    margin-top: 0.25rem;
}

.comment-metadata a {
    color: gray;
    text-decoration: none;
}

.comment-content {
    line-height: 1.6;
    color: rgb(225, 0, 255);
    margin: 1rem 0;
}

.comment-content p {
    margin-bottom: 1rem;
}

.comment-awaiting-moderation {
    display: inline-block;
    background-color: white;
    color: orange;
    padding: 0.25rem 0.75rem;
    border-radius: 0.3rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.comment-reply-link,
.comment-edit-link {
    display: inline-block;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    margin-right: 0.5rem;
    border-radius: 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-reply-link {
    background-color: white;
    color: rgb(52, 73, 94);
}

.comment-reply-link:hover {
    background: rgb(52, 152, 219);
    color: white;
}

.comment-edit-link {
    background-color: white;
    color: gray;
    border: 0.3rem solid white;
}

.pingback .comment-body {
    color: gray;
    font-style: italic;
}

@media (max-width: 768px) {
    .comment {
        padding: 1rem;
    }
    
    .comment.depth-2,
    .comment.depth-3,
    .comment.depth-4 {
        margin-left: 1rem;
    }
    
    .comment .avatar {
        width: 5rem;
        height: 5rem;
        margin-right: 0.75rem;
    }
}

.bypostauthor .comment {
    background-color: white;
    border-left-color: rgb(46, 204, 113);
}

.no-comments {
    text-align: center;
    padding: 2rem;
    color: gray;
    font-style: italic;
    background-color: white;
    border-radius: 0.8rem;
}