.post-actions-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 26px;
}

.action-btn-form {
    margin: 0;
}

.action-btn {
    min-height: 46px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.action-btn-like {
    background: #d62828;
    color: #fff;
}

.action-btn-like.liked {
    background: #991b1b;
    color: #fff;
}

.action-btn-report {
    background: #f2c230;
    color: #1f2937;
}

.action-btn-report.reported {
    background: #cbd5e1;
    color: #475569;
}

.comments-section {
    margin-top: 28px;
    border-top: 1px solid #dbe2ea;
    padding-top: 28px;
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1f2f47;
    margin-bottom: 16px;
}

.comment-form-box {
    background: #f8fafc;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.comment-textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-submit-btn {
    min-height: 46px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    background: #1656a6;
    color: #fff;
    font-weight: 800;
}

.comment-list {
    display: grid;
    gap: 16px;
}

.comment-card {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    padding: 18px;
}

.comment-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 900;
    color: #1f2f47;
}

.comment-date {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
}

.comment-content {
    color: #334155;
    line-height: 1.7;
}

.report-help-text {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .comments-title {
        font-size: 1.45rem;
    }
}
.comment-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.comment-inline-form {
    margin: 0;
}

.comment-action-btn {
    border: 1px solid #d5dce6;
    background: #f8fafc;
    color: #24324a;
    border-radius: 10px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.comment-action-btn.active {
    background: #eef4fb;
    border-color: #1d4f91;
    color: #1d4f91;
}

.comment-report-btn {
    background: #fff8e8;
    border-color: #f1d48d;
    color: #8f5b00;
}

.comment-delete-btn {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #b42318;
}

.comment-edit-box {
    width: 100%;
    margin-top: 6px;
}

.comment-edit-box summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
}

.comment-edit-box summary::-webkit-details-marker {
    display: none;
}

.comment-edit-form {
    margin-top: 12px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #d8e0ea;
    border-radius: 12px;
}

.comment-edit-textarea {
    min-height: 110px;
    margin-bottom: 12px;
}

.comment-save-btn {
    border: none;
    background: #1d4f91;
    color: #fff;
    border-radius: 10px;
    min-height: 40px;
    padding: 0 16px;
    font-weight: 800;
}