#comments {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#comments a {
    color: var(--color-green);
}

#comments a:hover {
    text-decoration: underline;
}

#comments .comments-container {
    max-width: 80ch;
}

#comments .comment-metadata a {
    color: var(--color-dark-gray);
}


#comments .comment {
    margin-top: 20px;
    background-color: white;
    box-shadow: 0 0px 2px var(--color-dark-gray);
    border-radius: 3px;
    padding: 20px;
    position: relative;
}

#comments .comment .reply::after {
    display: inline-block;
    width: 20px;
    height: 20px;
    content: " ";
    margin-left: 5px;
}

#comments .comment .reply {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 2px 8px;
    color: var(--color-dark-gray);
}

#comments .comment .reply:hover {
    text-decoration: underline;
}


#comments .comment-author img {
    text-transform: capitalize;
    vertical-align: middle;
    border-radius: 50%;
}

#comments .fn {
    font-weight: var(--weight-bold);
    padding-left: 10px;
}

#comments .comment-meta {
    color: var(--color-dark-gray);
}

#comments .comment-respond {
    margin-top: 20px;
}

#comments .comment-reply-title {
    font-size: var(--fs-4); 
}

#cancel-comment-reply-link {
    display: inline-block;
    margin: 0 10px;
    font-size: var(--fs-6);
}
