
    /* adapted from https://css-tricks.com/styling-comment-threads/ */

    body {
        background-color: #f9f9f9;
    }
    
    .blog-body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        line-height: 1.4;
        color: rgba(0, 0, 0, 0.85);
    }
    .blog-content {
        font-size: 1.2em;
    }
    .comment-thread {
        width: 700px;
        max-width: calc(95vw - 40px);
        margin: auto;
        padding: 0 30px;
        border: 1px solid transparent; /* Removes margin collapse */
        margin-bottom: 3em;
    }
    .m-0 {margin: 0; white-space: nowrap;}
    
    .comment {
        position: relative;
        margin: 40px auto auto;
    }
    .comment-heading {
        display: flex;
        align-items: center;
        height: 15px;
        font-size: 14px;
    }
    .comment-info {
        color: rgba(0, 0, 0, 0.5);
        margin-left: 10px;
    }
    .comment-author {
        color: rgba(0, 0, 0, 0.85);
        font-weight: bold;
        text-decoration: none;
    }
    .comment-author.m {color: rgba(0, 20, 50, 0.85);}
    .comment-author.f {color: rgba(40, 0, 40, 0.85);}
    .comment-author:hover {text-decoration: underline;}
    .replies {margin-left: 20px;}
    .comment-button {
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        font-size: 14px;
        padding: 4px 8px;
        color: rgba(0, 0, 0, 0.85);
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }
    .comment-button:hover {
        cursor: pointer;
        background-color: #ecf0f1;
    }
    .expert {
        background: gold;
        border-radius: 4px;
        padding: 4pt;
        color: green;
        cursor: pointer;
        margin-left: 5pt;
        font-size: 0.9em;
    }
    .reportnote {
        font-size: 8pt;
        color: gray;
        text-align: right;
    }
    img:not(.home-button-img) {
        max-width: 90%;
        max-height: 30em;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }