/* Comments */
.comments h3 {
    font-family: 'Electrolize', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5a6a78;
    margin: 0 0 8px;
}

.comment {
    border-bottom: 1px solid rgba(58, 212, 231, 0.1);
    padding: 8px 0;
}

.comment-header {
    color: #3ad4e7;
    font-weight: 500;
    font-size: 12px;
    font-family: 'Electrolize', Arial, sans-serif;
}

.comment-date {
    color: #3a4a58;
    font-weight: normal;
    margin-left: 10px;
    font-family: 'Roboto', Arial, sans-serif;
}

.comment-body {
    margin-top: 4px;
}

.comment-empty {
    color: #3a4a58;
}

.comment-delete {
    float: right;
    color: #3a4a58;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    padding: 0 4px;
    transition: color 0.2s;
}

.comment-delete:hover {
    color: #cc4444;
}

.comment-form {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(58, 212, 231, 0.1);
}

.comment-textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(14, 20, 28, 0.8);
    color: #b8c4d0;
    border: 1px solid rgba(58, 212, 231, 0.18);
    border-radius: 4px;
    padding: 6px;
    resize: vertical;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 13px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-textarea:focus {
    border-color: rgba(58, 212, 231, 0.5);
    box-shadow: 0 0 8px rgba(58, 212, 231, 0.12);
    outline: none;
}
