.feed-message {
    padding-bottom: 32px;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 32px;

    &:last-child {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }

    .feed-message-header  {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 16px;

        @screen sm {
            flex-wrap: no-wrap;
        }
    }

    .feed-message-header-avatar-author {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 4px;

        @screen sm {
            width: auto;
            margin-bottom: 0px;
        }
    }

    .feed-message-header-avatar {
        margin-right: 16px;
        flex-shrink: 0;
    }

    .feed-message-header-author {
        @apply text-red;

        margin-right: 16px;

        font-size: 18px;
        font-weight: 700;
    }

    .feed-message-header-time {
        @apply text-black-400;

        margin-right: 16px;

        font-size: 18px;
    }

    .feed-message-body {
        margin-bottom: 16px;
    }

    .feed-message-footer {
        display: flex;
        flex-wrap: wrap;

        @screen sm {
            flex-wrap: nowrap;
        }
    }

    .feed-message-footer-col {
        margin-right: 16px;
        display: flex;
        align-items: center;

        @screen sm {
            margin-right: 24px;
        }
    }

    .feed-message-footer-like {
        order: 9999;
        width: 100%;
        margin-left: -10px;

        @screen sm {
            order: 0;
            padding-right: 24px;
            margin-left: 0;
            /* border-right: 1px solid #e3e3e3; */
            width: auto;

            @screen sm {
                padding-right: 0;
            }
        }

        &::after {
            content: '';
            height: 20px;
            border-left: 1px solid #e3e3e3;
            right: 0;
            display: none;

            @screen sm {
                margin-left: 16px;
                display: block;
            }
        }
    }

    .feed-message-footer-react {
        padding-right: 16px;
        border-right: 1px solid #e3e3e3;

        @screen sm {
            padding: 0;
            border-right: none;
        }
    }

    .feed-message-footer-reactions {
        padding-right: 0;
        border-right: none;

        @screen sm {
            margin-left: auto;
            margin-right: 0;
        }
    }
}
