.show-comments {
    border-top: 1px solid var(--colorLight);
    margin: 2rem 0;
}
.show-comments h2 {
    background: var(--colorSnowWhite);
    padding: 0.5rem 1rem 0.75rem 1rem;
    margin: 0 0 1rem 0;
}
.show-comments-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
@media only screen and (min-width: 1601px) {
    .show-comments-list {
        width: 990px;
    }
}
@media only screen and (min-width: 1281px) {
    .show-comments-form {
        width: 420px;
    }
}
@media only screen and (min-width: 1281px) and (max-width: 1600px) {
    .show-comments-list {
        width: 750px;
    }
}
@media only screen and (min-width: 961px) and (max-width: 1280px) {
    .show-comments-form {
        width: 300px;
    }
    .show-comments-list {
        width: 600px;
    }
}
@media only screen and (max-width: 960px) {
    .show-comments-container {
        flex-direction: column;
        align-items: center;
    }
    .show-comments-list {
        width: 100%;
    }
    .show-comments-form {
        width: 100%;
        max-width: 480px;
    }
}

.show-comments-item {
    margin: 0 0 1rem 0;
    border-top: 1px solid var(--colorLight);
}
.show-comments-item:first-child {
    border-top: 0 none;
}
.show-comments-item header {
    font-size: 20px;
    color: var(--colorTrBlue);
    font-weight: 500;
    padding: 7px 0 0 0;
}
.show-comments-item header::before {
    display:inline-block;font:normal normal normal 14px/1 IconSiteFonts;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
    content: "\F086";
    margin: 0 8px 0 0;
    font-size: 16px;
}
.show-comments-item header small {
    font-size: 14px;
    margin: 0 0 0 8px;
    font-weight: 300;
}
.show-comments-item.show-blockquote {
    background-image: url("/assets/image/house.webp");
    background-repeat: no-repeat;
    background-size: 36px;
    background-position: 0 7px;
    padding: 0 0 0 48px;
    min-height: 36px;
    margin: -7px 0 7px 2.5rem;
    color: var(--colorTrBlue);
    border-top: 1px solid var(--colorSnowWhite);
}



