/* 移动端文章页面操作按钮样式 */
.post-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
}

.post-actions .action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 20px;
    background: var(--main-bg-color);
    box-shadow: 0 2px 4px var(--main-shadow);
    transition: all .3s;
}

.post-actions .action svg {
    margin-right: 6px;
}

.post-actions .action text {
    margin-right: 4px;
}

.post-actions .action count {
    font-size: 12px;
    color: var(--muted-2-color);
}

.post-actions .action.actived {
    color: var(--focus-color);
}

.post-actions .action.signin-loader {
    cursor: pointer;
}

.post-actions .action[mobile-bottom="true"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .post-actions {
        flex-direction: row;
        gap: 10px;
    }
    
    .post-actions .action {
        flex: 1;
        min-width: 80px;
        text-align: center;
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .post-actions .action svg {
        margin-right: 4px;
    }
    
    .post-actions .action text {
        font-size: 12px;
    }
    
    .post-actions .action count {
        font-size: 10px;
    }
}