/*  section.comment, comment-form */
    section.comment-form {
        margin: 2rem;
    }

    section.comment-form .input-group {
        margin-bottom: 1rem;
        flex-wrap: nowrap;
    }

    section.comment-form textarea {
        width: 100%;
        border: solid 1px var(--gray-100);
        background-color: var(--gray-100);
        border-radius: 0;
        font-size: 1rem;
        line-height: 1.5;
        padding: .5rem;
        -webkit-appearance: none;
    }

    section.comment-form button {
        align-items: center;
        border: solid 1px var(--gray-200);
        background-color: var(--gray-200);
        padding: .5rem;
    }

    section.comment-form button.default {
        min-height: auto;
        line-height: initial;
    }

    section.comment-form button:hover {
        cursor: pointer;
        border: solid 1px var(--gray-300);
        background-color: var(--gray-300);
        color: var(--black);
        transition: all .3s ease;
    }

    section.comment-form button:disabled {
        color: var(--gray-400);
    }

    section.comment-form.edit-mode {
        margin-top: 0;
        padding: 1rem;
    }

    section.comment {
        margin: 2rem;
    }

    section.comment article {
        border-top: solid 1px var(--gray-200);
        padding: 2rem 1rem;
        font-size: 1.25rem;
        word-break: keep-all;
    }

    section.comment article:last-child {
        padding-bottom: 0;
    }

    section.comment article header {
        display: flex;
        justify-content: space-between;
        align-items: center;

        font-size: 0.75rem;
        color: var(--gray-500);
        margin: 0;
        margin-bottom: 0.5rem;
    }

    section.comment article time {
        margin-bottom: 0;
    }

    section.comment article footer {
        color: var(--gray-800);
        margin-top: 1rem;
        font-family: var(--font-gothic);
        font-size: 0.9rem;
        font-weight: 300;
        position: relative;
    }

    /*section.comment article footer:before {
        content: "";
        background: var(--gray-900);
        position: absolute;
        top: 0;
        left: 0;
        height: 1px;
        width: 30%
    }*/

    section.comment article footer .btns {
        text-align: right;
        margin-top: 1rem;
    }

    section.comment article footer .btns a {
        color: var(--black);
        margin-left: .5rem;
    }

    section.comment article footer .file-list li {
        border-bottom: none;
    }

    section.comment article time {
        font-family: var(--font-gothic);
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--gray-500);
        margin-bottom: 0.5rem;
    }

