.root {
    width: 100%;
    display: flex;
    padding: 32px 0;
    border-bottom: var(--border-width-sm) solid var(--border-color-alpha-black-10);
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.root:first-child {
    padding-top: 0;
}

.authorContainer {
    width: 100%;
    max-width: 172px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.author {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.content {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

@media (width <= 768px) {
    .root {
        padding: 20px 0;
        flex-direction: column;
    }

    .root:first-child {
        padding-top: 20px;
    }

    .authorContainer {
        gap: 8px;
        max-width: 100%;
    }

    .content {
        gap: 8px;
    }
}
