.post-interactions-wrapper {
    margin: 60px 0 30px;
}

.post-interactions-stats {
    display: flex;
    gap: 24px;
    /* background: #f3f4f6; */
    border-radius: 12px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}
.post-interactions-wrapper .stat-item svg {
    fill: none;;
    /* transition: all 0.2s ease; */
}
.stat-item.like-post-btn {
    cursor: pointer;
    transition: all 0.2s;
}

.stat-item.like-post-btn:hover:not(:disabled) {
    color: #ef4444;
}

.stat-item.like-post-btn:hover:not(:disabled) .stat-icon {
    color: #ef4444;
    transform: scale(1.1);
}

.stat-item.like-post-btn.liked,
.stat-item.like-post-btn:disabled {
    /* color: #ef4444; */
    cursor: not-allowed;
}

.stat-item.like-post-btn.liked .stat-icon,
.stat-item.like-post-btn:disabled .stat-icon {
    color: #ef4444;
}

.stat-icon {
    color: #9ca3af;
    transition: all 0.2s;
}

.stat-count {
    /* font-weight: 600; */
    color: 54626E;
    font-size: 14px;
}

.stat-label {
    font-size: 14px;
}

.custom-comments-section {
    /* margin: 20px 0 40px 0; */
    
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.comment-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    /* background: #f9fafb; */
    border-radius: 8px;
    position: relative;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
}

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

.comment-author {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.comment-date {
    font-size: 13px;
    color: #9ca3af;
}

.comment-content {
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 8px;
}

.comment-content p {
    margin: 0;
}

.comment-footer {
    font-size: 13px;
    color: #6b7280;
}

.like-comment-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9ca3af;
    transition: all 0.2s;
}

.like-comment-btn:hover:not(:disabled) {
    color: #ef4444;
    transform: scale(1.1);
}

.like-comment-btn.liked,
.like-comment-btn:disabled {
    color: #ef4444;
    cursor: not-allowed;
}

.load-more-comments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.load-more-comments:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.comment-form-wrapper {
    position: relative;
	border-top: 1px solid #204A8A;
}

.custom-comment-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.custom-comment-form textarea {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    font-family: inherit;
    font-size: 14px;
    resize: none;
    transition: all 0.2s;
    min-height: 44px;
    max-height: 120px;
}

.custom-comment-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-comment-btn {
    padding: 10px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.submit-comment-btn:hover {
    background: #2563eb;
}

.comment-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.comment-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.comment-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.comment-message.show {
    display: block;
}

.custom-comments-section .comment-form-wrapper {
    display: block;
    gap: 12px;
    align-items: flex-start;
    padding: 32px 0px 16px;
    background: transparent;
    border-radius: 0;
    margin-top: 20px;
}