/* ── Notes Feed Comments Section ── */
.ifn-comm-toggle {
    background: transparent;
    border: none;
    color: #444;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
    transition: color .2s;
    font-family: inherit;
}

.ifn-comm-toggle:hover {
    color: #888;
}

.ifn-comments {
    margin-top: 12px;
    border-top: 1px solid #141414;
    padding-top: 12px;
}

.ifn-comm-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.ifn-comment {
    display: flex;
    gap: 10px;
}

.ifn-comment-body {
    flex: 1;
}

.ifn-comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.ifn-comment-name {
    font-size: 12px;
    font-weight: 600;
    color: #ccc;
}

.ifn-comment-date {
    font-size: 10px;
    color: #444;
}

.ifn-comm-del {
    background: transparent;
    border: none;
    color: #2a2a2a;
    font-size: 11px;
    cursor: pointer;
    margin-left: auto;
    transition: color .2s;
}

.ifn-comm-del:hover {
    color: #c0392b;
}

.ifn-comment-text {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 6px;
}

.ifn-comment-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ifn-clike-btn,
.ifn-reply-toggle {
    background: transparent;
    border: none;
    font-size: 11px;
    color: #444;
    cursor: pointer;
    transition: color .2s;
    font-family: inherit;
    padding: 0;
}

.ifn-clike-btn:hover {
    color: #e05;
}

.ifn-clike-btn.liked {
    color: #e05;
}

.ifn-reply-toggle:hover {
    color: #888;
}

.ifn-replies {
    margin-top: 10px;
    padding-left: 12px;
    border-left: 1px solid #1e1e1e;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Form commento */
.ifn-comm-form {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ifn-comm-input-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ifn-comm-input {
    width: 100%;
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 13px;
    padding: 8px 10px;
    resize: none;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s;
}

.ifn-comm-input:focus {
    border-color: #333;
}

.ifn-comm-send {
    align-self: flex-end;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ccc;
    border-radius: 7px;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
}

.ifn-comm-send:hover {
    background: #e8580c;
    border-color: #e8580c;
    color: #fff;
}

.ifn-reply-form {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ifn-reply-form .ifn-comm-input {
    background: #0d0d0d;
}
